Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(688)

Unified Diff: webkit/glue/webview_impl.h

Issue 164225: Switch to WebFrame from the WebKit API.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/webview_delegate.h ('k') | webkit/glue/webview_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webview_impl.h
===================================================================
--- webkit/glue/webview_impl.h (revision 22886)
+++ webkit/glue/webview_impl.h (working copy)
@@ -15,7 +15,6 @@
#include "webkit/api/public/WebPoint.h"
#include "webkit/api/public/WebSize.h"
#include "webkit/glue/back_forward_list_client_impl.h"
-#include "webkit/glue/image_resource_fetcher.h"
#include "webkit/glue/webframe_impl.h"
#include "webkit/glue/webpreferences.h"
#include "webkit/glue/webview.h"
@@ -41,6 +40,10 @@
class WebSettingsImpl;
}
+namespace webkit_glue {
+class ImageResourceFetcher;
+}
+
class AutocompletePopupMenuClient;
class SearchableFormData;
class WebHistoryItemImpl;
@@ -76,12 +79,12 @@
virtual void SetDelegate(WebViewDelegate*);
virtual void SetUseEditorDelegate(bool value);
virtual void SetTabKeyCyclesThroughElements(bool value);
- virtual WebFrame* GetMainFrame();
- virtual WebFrame* GetFocusedFrame();
- virtual void SetFocusedFrame(WebFrame* frame);
- virtual WebFrame* GetFrameWithName(const std::wstring& name);
- virtual WebFrame* GetPreviousFrameBefore(WebFrame* frame, bool wrap);
- virtual WebFrame* GetNextFrameAfter(WebFrame* frame, bool wrap);
+ virtual WebKit::WebFrame* GetMainFrame();
+ virtual WebKit::WebFrame* GetFocusedFrame();
+ virtual void SetFocusedFrame(WebKit::WebFrame* frame);
+ virtual WebKit::WebFrame* GetFrameWithName(const std::wstring& name);
+ virtual WebKit::WebFrame* GetPreviousFrameBefore(WebKit::WebFrame* frame, bool wrap);
+ virtual WebKit::WebFrame* GetNextFrameAfter(WebKit::WebFrame* frame, bool wrap);
virtual void ClearFocusedNode();
virtual void StopLoading();
virtual void SetBackForwardListSize(int size);
« no previous file with comments | « webkit/glue/webview_delegate.h ('k') | webkit/glue/webview_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698