diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-18 15:16:54 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-18 15:16:54 +0000 |
commit | b87ee5256f760e63d5373258b4b51cc1f7258b5d (patch) | |
tree | c1401ca9694b72fd5f4df66b3e50b178adf64ef7 /content/port | |
parent | 5dbb5e732ebb3e66ab04b961a62329fd6f9a4b15 (diff) | |
download | chromium_src-b87ee5256f760e63d5373258b4b51cc1f7258b5d.zip chromium_src-b87ee5256f760e63d5373258b4b51cc1f7258b5d.tar.gz chromium_src-b87ee5256f760e63d5373258b4b51cc1f7258b5d.tar.bz2 |
Move NativeWebKeyboardEvent to the content namespace.
TBR=ben
Review URL: https://chromiumcodereview.appspot.com/10383239
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137865 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/port')
-rw-r--r-- | content/port/browser/render_widget_host_view_port.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/content/port/browser/render_widget_host_view_port.h b/content/port/browser/render_widget_host_view_port.h index 8ff0c5d..cf0269d 100644 --- a/content/port/browser/render_widget_host_view_port.h +++ b/content/port/browser/render_widget_host_view_port.h @@ -22,7 +22,10 @@ class WebCursor; struct AccessibilityHostMsg_NotificationParams; struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; struct GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params; + +namespace content { struct NativeWebKeyboardEvent; +} namespace webkit { namespace npapi { @@ -194,7 +197,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 NativeWebKeyboardEvent& event) = 0; + const content::NativeWebKeyboardEvent& event) = 0; // Methods associated with GPU-accelerated plug-in instances. virtual gfx::PluginWindowHandle AllocateFakePluginWindowHandle( |