diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-14 01:10:41 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-14 01:10:41 -0800 |
commit | eb09425a76cb1fdd9f09a00e43e760f952800cc6 (patch) | |
tree | 5374ceaae443c20623da0582f8b91a18dbf654e7 /UICaboodle/BrowserView.h | |
parent | 7b3f9d6e5f4471e8e56120e7b7b5132dfd88063f (diff) |
Implement chpwn's lazy-loading API for BrowserController.
Diffstat (limited to 'UICaboodle/BrowserView.h')
-rw-r--r-- | UICaboodle/BrowserView.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/UICaboodle/BrowserView.h b/UICaboodle/BrowserView.h index efc1e6c..79652f3 100644 --- a/UICaboodle/BrowserView.h +++ b/UICaboodle/BrowserView.h @@ -91,6 +91,8 @@ + (void) _initialize; +- (void) setURL:(NSURL *)url; + - (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy; - (void) loadURL:(NSURL *)url; @@ -99,6 +101,7 @@ - (bool) isLoading; - (id) init; +- (id) initWithURL:(NSURL *)url; - (id) initWithWidth:(float)width; - (id) initWithWidth:(float)width ofClass:(Class)_class; |