diff options
Diffstat (limited to 'webkit/glue/webview.h')
-rw-r--r-- | webkit/glue/webview.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/webkit/glue/webview.h b/webkit/glue/webview.h index 08bec75..6e2c794 100644 --- a/webkit/glue/webview.h +++ b/webkit/glue/webview.h @@ -13,6 +13,7 @@ namespace WebKit { class WebDragData; +class WebFrame; class WebSettings; struct WebPoint; } @@ -21,7 +22,6 @@ struct MediaPlayerAction; struct WebPreferences; class GURL; class WebDevToolsAgent; -class WebFrame; class WebViewDelegate; // @@ -99,24 +99,24 @@ class WebView : public WebKit::WebWidget { // mainFrame. // @result The main frame. // - (WebFrame *)mainFrame; - virtual WebFrame* GetMainFrame() = 0; + virtual WebKit::WebFrame* GetMainFrame() = 0; // Returns the currently focused frame. - virtual WebFrame* GetFocusedFrame() = 0; + virtual WebKit::WebFrame* GetFocusedFrame() = 0; // Sets focus to the frame passed in. - virtual void SetFocusedFrame(WebFrame* frame) = 0; + virtual void SetFocusedFrame(WebKit::WebFrame* frame) = 0; // Returns the frame with the given name, or NULL if not found. - virtual WebFrame* GetFrameWithName(const std::wstring& name) = 0; + virtual WebKit::WebFrame* GetFrameWithName(const std::wstring& name) = 0; // Returns the frame previous to the specified frame, by traversing the frame // tree, wrapping around if necessary. - virtual WebFrame* GetPreviousFrameBefore(WebFrame* frame, bool wrap) = 0; + virtual WebKit::WebFrame* GetPreviousFrameBefore(WebKit::WebFrame* frame, bool wrap) = 0; // Returns the frame after to the specified frame, by traversing the frame // tree, wrapping around if necessary. - virtual WebFrame* GetNextFrameAfter(WebFrame* frame, bool wrap) = 0; + virtual WebKit::WebFrame* GetNextFrameAfter(WebKit::WebFrame* frame, bool wrap) = 0; // ---- TODO(darin): remove from here ---- |