summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authordavemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-03 22:20:45 +0000
committerdavemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-03 22:20:45 +0000
commit9b1411ee3ce7841b44a30bdc26a91a5fee4e05bc (patch)
tree2eb654c339dc0ca3d10557d260ea5e5b03d0d2c8 /chrome
parentc2911d7cb75ff0e8a1804452af18b303d8d77725 (diff)
downloadchromium_src-9b1411ee3ce7841b44a30bdc26a91a5fee4e05bc.zip
chromium_src-9b1411ee3ce7841b44a30bdc26a91a5fee4e05bc.tar.gz
chromium_src-9b1411ee3ce7841b44a30bdc26a91a5fee4e05bc.tar.bz2
Added native_web_keyboard_event_aura.cc
BUG=None TEST=None Review URL: http://codereview.chromium.org/8118017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103802 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/chrome_common.gypi3
-rw-r--r--chrome/common/native_web_keyboard_event_aura.cc23
2 files changed, 26 insertions, 0 deletions
diff --git a/chrome/chrome_common.gypi b/chrome/chrome_common.gypi
index 90d344a..095d258 100644
--- a/chrome/chrome_common.gypi
+++ b/chrome/chrome_common.gypi
@@ -258,6 +258,9 @@
],
}],
['use_aura==1', {
+ 'sources': [
+ 'common/native_web_keyboard_event_aura.cc',
+ ],
'dependencies!': [
'default_plugin/default_plugin.gyp:default_plugin',
],
diff --git a/chrome/common/native_web_keyboard_event_aura.cc b/chrome/common/native_web_keyboard_event_aura.cc
new file mode 100644
index 0000000..3cbde7a
--- /dev/null
+++ b/chrome/common/native_web_keyboard_event_aura.cc
@@ -0,0 +1,23 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/common/native_web_keyboard_event.h"
+
+NativeWebKeyboardEvent::NativeWebKeyboardEvent()
+ : skip_in_browser(false) {
+}
+
+NativeWebKeyboardEvent::NativeWebKeyboardEvent(
+ const NativeWebKeyboardEvent& other)
+ : skip_in_browser(other.skip_in_browser) {
+}
+
+NativeWebKeyboardEvent& NativeWebKeyboardEvent::operator=(
+ const NativeWebKeyboardEvent& other) {
+ skip_in_browser = other.skip_in_browser;
+ return *this;
+}
+
+NativeWebKeyboardEvent::~NativeWebKeyboardEvent() {
+}