diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-21 01:29:58 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-21 01:29:58 +0000 |
commit | fc4616f709326079afa312054c25132b821a2b2a (patch) | |
tree | b7efeb3f51ac364da3b52c085c9417311e19a26a /content/port | |
parent | c35a22196ec63f3677b77c38b7b5768078d0ecaf (diff) | |
download | chromium_src-fc4616f709326079afa312054c25132b821a2b2a.zip chromium_src-fc4616f709326079afa312054c25132b821a2b2a.tar.gz chromium_src-fc4616f709326079afa312054c25132b821a2b2a.tar.bz2 |
Move more files into the content namespace.
Review URL: https://chromiumcodereview.appspot.com/10804031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147756 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/port')
-rw-r--r-- | content/port/browser/render_widget_host_view_port.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/content/port/browser/render_widget_host_view_port.h b/content/port/browser/render_widget_host_view_port.h index 7955cee..c4a3191 100644 --- a/content/port/browser/render_widget_host_view_port.h +++ b/content/port/browser/render_widget_host_view_port.h @@ -15,17 +15,12 @@ #include "ui/base/range/range.h" #include "ui/surface/transport_dib.h" -class BackingStore; class WebCursor; struct AccessibilityHostMsg_NotificationParams; struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; struct GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params; -namespace content { -struct NativeWebKeyboardEvent; -} - namespace webkit { namespace npapi { struct WebPluginGeometry; @@ -39,8 +34,9 @@ struct WebScreenInfo; #endif namespace content { - +class BackingStore; class SmoothScrollGesture; +struct NativeWebKeyboardEvent; // This is the larger RenderWidgetHostView interface exposed only // within content/ and to embedders looking to port to new platforms. @@ -54,7 +50,7 @@ class CONTENT_EXPORT RenderWidgetHostViewPort : public RenderWidgetHostView { // Like RenderWidgetHostView::CreateViewForWidget, with cast. static RenderWidgetHostViewPort* CreateViewForWidget( - content::RenderWidgetHost* widget); + RenderWidgetHost* widget); // Perform all the initialization steps necessary for this object to represent // a popup (such as a <select> dropdown), then shows the popup at |pos|. @@ -197,7 +193,7 @@ class CONTENT_EXPORT RenderWidgetHostViewPort : public RenderWidgetHostView { // not enabled, this is a no-op, so it is always safe to call. // Returns true if the event was handled by IME. virtual bool PostProcessEventForPluginIme( - const content::NativeWebKeyboardEvent& event) = 0; + const NativeWebKeyboardEvent& event) = 0; // Methods associated with GPU-accelerated plug-in instances. virtual gfx::PluginWindowHandle AllocateFakePluginWindowHandle( |