]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/BrowserView.h
Porting, webkit stability.
[cydia.git] / UICaboodle / BrowserView.h
index 7c6cc505515db37e31907749c60961fb942b11e7..7a227d0be42c73d5a57e583a530d7261683d4784 100644 (file)
@@ -7,18 +7,20 @@
 
 @class UIProgressIndicator;
 @class UIScroller;
-@class UIWebView;
+@class UIDocumentWebView;
 
 @class WebView;
 
 @class Database;
+@class IndirectDelegate;
 
 @interface BrowserView : RVPage {
     _transient Database *database_;
     UIScroller *scroller_;
-    UIWebView *webview_;
+    UIWebDocumentView *webview_;
     NSMutableArray *urls_;
     UIProgressIndicator *indicator_;
+    IndirectDelegate *indirect_;
 
     NSString *title_;
     bool loading_;
@@ -37,4 +39,6 @@
 
 - (id) initWithBook:(RVBook *)book database:(Database *)database;
 
+- (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
+
 @end