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 /chrome/browser/extensions/extension_host_mac.h | |
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 'chrome/browser/extensions/extension_host_mac.h')
-rw-r--r-- | chrome/browser/extensions/extension_host_mac.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_host_mac.h b/chrome/browser/extensions/extension_host_mac.h index 5b0e5e0..1ee25a6 100644 --- a/chrome/browser/extensions/extension_host_mac.h +++ b/chrome/browser/extensions/extension_host_mac.h @@ -17,9 +17,10 @@ class ExtensionHostMac : public ExtensionHost { const GURL& url, content::ViewType host_type) : ExtensionHost(extension, site_instance, url, host_type) {} virtual ~ExtensionHostMac(); + private: virtual void UnhandledKeyboardEvent( - const NativeWebKeyboardEvent& event) OVERRIDE; + const content::NativeWebKeyboardEvent& event) OVERRIDE; DISALLOW_COPY_AND_ASSIGN(ExtensionHostMac); }; |