summaryrefslogtreecommitdiffstats
path: root/webkit/plugins
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 21:31:26 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 21:31:26 +0000
commite9ff79ccdf72412480abf22860924c3eedcc61f0 (patch)
treec85c010a58d15374fc7fc2d31f9c8f33e3f74ae3 /webkit/plugins
parent5f23a1cf7f266005763a9c40ec4a422f7dc9b3bb (diff)
downloadchromium_src-e9ff79ccdf72412480abf22860924c3eedcc61f0.zip
chromium_src-e9ff79ccdf72412480abf22860924c3eedcc61f0.tar.gz
chromium_src-e9ff79ccdf72412480abf22860924c3eedcc61f0.tar.bz2
Move a bunch of code in content\renderer to the content namespace.
Review URL: https://codereview.chromium.org/11232014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163061 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins')
-rw-r--r--webkit/plugins/ppapi/fullscreen_container.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/webkit/plugins/ppapi/fullscreen_container.h b/webkit/plugins/ppapi/fullscreen_container.h
index 284386b..04d7ea2 100644
--- a/webkit/plugins/ppapi/fullscreen_container.h
+++ b/webkit/plugins/ppapi/fullscreen_container.h
@@ -7,7 +7,10 @@
#include "webkit/plugins/ppapi/plugin_delegate.h"
+// TODO(yzshen): this is a layering violation. http://crbug.com/156865
+namespace content {
class MouseLockDispatcher;
+}
namespace WebKit {
struct WebCursorInfo;
@@ -42,7 +45,7 @@ class FullscreenContainer {
virtual void ReparentContext(PluginDelegate::PlatformContext3D*) = 0;
// The returned object is owned by FullscreenContainer.
- virtual MouseLockDispatcher* GetMouseLockDispatcher() = 0;
+ virtual content::MouseLockDispatcher* GetMouseLockDispatcher() = 0;
protected:
virtual ~FullscreenContainer() {}