summaryrefslogtreecommitdiffstats
path: root/content/browser/web_contents/interstitial_page_impl.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-18 15:16:54 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-18 15:16:54 +0000
commitb87ee5256f760e63d5373258b4b51cc1f7258b5d (patch)
treec1401ca9694b72fd5f4df66b3e50b178adf64ef7 /content/browser/web_contents/interstitial_page_impl.h
parent5dbb5e732ebb3e66ab04b961a62329fd6f9a4b15 (diff)
downloadchromium_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/browser/web_contents/interstitial_page_impl.h')
-rw-r--r--content/browser/web_contents/interstitial_page_impl.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/content/browser/web_contents/interstitial_page_impl.h b/content/browser/web_contents/interstitial_page_impl.h
index d4c6d15..a0ba9b6 100644
--- a/content/browser/web_contents/interstitial_page_impl.h
+++ b/content/browser/web_contents/interstitial_page_impl.h
@@ -102,10 +102,11 @@ class CONTENT_EXPORT InterstitialPageImpl
virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE;
// RenderWidgetHostDelegate implementation:
- virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
- bool* is_keyboard_shortcut) OVERRIDE;
+ virtual bool PreHandleKeyboardEvent(
+ const content::NativeWebKeyboardEvent& event,
+ bool* is_keyboard_shortcut) OVERRIDE;
virtual void HandleKeyboardEvent(
- const NativeWebKeyboardEvent& event) OVERRIDE;
+ const content::NativeWebKeyboardEvent& event) OVERRIDE;
bool enabled() const { return enabled_; }
content::WebContents* web_contents() const;