diff options
author | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-01 18:17:53 +0000 |
---|---|---|
committer | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-01 18:17:53 +0000 |
commit | 3184f90bff4653bfb7a90ec4a1398559c4668247 (patch) | |
tree | 80e1db929000e7153d41e8101e4d0c3af08e696b /webkit/tools/test_shell/webview_host.h | |
parent | 09c38f53b7ad3cf529f51c32a997aa9fc24fb518 (diff) | |
download | chromium_src-3184f90bff4653bfb7a90ec4a1398559c4668247.zip chromium_src-3184f90bff4653bfb7a90ec4a1398559c4668247.tar.gz chromium_src-3184f90bff4653bfb7a90ec4a1398559c4668247.tar.bz2 |
Move WebPreferences to root namespace
This is in preparation to using the IPC_STRUCT_XXX macros
BUG=235200
TBR=darin@chromium.org,brettw@chromium.org
Review URL: https://chromiumcodereview.appspot.com/14364006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197659 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/webview_host.h')
-rw-r--r-- | webkit/tools/test_shell/webview_host.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/webkit/tools/test_shell/webview_host.h b/webkit/tools/test_shell/webview_host.h index 9a99f03..5f43a1c 100644 --- a/webkit/tools/test_shell/webview_host.h +++ b/webkit/tools/test_shell/webview_host.h @@ -14,11 +14,8 @@ #include "webkit/plugins/npapi/gtk_plugin_container_manager.h" #endif -namespace webkit_glue { -struct WebPreferences; -} - class TestWebViewDelegate; +struct WebPreferences; namespace WebKit { class WebDevToolsAgentClient; @@ -34,7 +31,7 @@ class WebViewHost : public WebWidgetHost { static WebViewHost* Create(gfx::NativeView parent_view, TestWebViewDelegate* delegate, WebKit::WebDevToolsAgentClient* devtools_client, - const webkit_glue::WebPreferences& prefs); + const WebPreferences& prefs); WebKit::WebView* webview() const; |