@end
@protocol BrowserViewDelegate
-- (RVPage *) pageForURL:(NSURL *)url hasTag:(int *)tag;
+- (UCViewController *) pageForURL:(NSURL *)url hasTag:(int *)tag;
@end
-@interface BrowserView : RVPage <
- RVBookHook
-> {
+@interface BrowserView : UCViewController {
UIScroller *scroller_;
- UIWebDocumentView *webview_;
+ UIWebDocumentView *document_;
UIProgressIndicator *indicator_;
IndirectDelegate *indirect_;
NSURLAuthenticationChallenge *challenge_;
- (WebView *) webView;
- (UIWebDocumentView *) documentView;
-- (id) initWithBook:(RVBook *)book;
-- (id) initWithBook:(RVBook *)book forWidth:(float)width;
-- (id) initWithBook:(RVBook *)book forWidth:(float)width ofClass:(Class)_class;
+- (id) init;
+- (id) initWithWidth:(float)width;
+- (id) initWithWidth:(float)width ofClass:(Class)_class;
- (NSString *) stringByEvaluatingJavaScriptFromString:(NSString *)script;
- (void) callFunction:(WebScriptObject *)function;
- (bool) promptForSensitive:(NSString *)name;
- (bool) allowSensitiveRequests;
-@end
+@end
\ No newline at end of file