Index: Source/core/events/InputDevice.cpp |
diff --git a/Source/core/events/InputDevice.cpp b/Source/core/events/InputDevice.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bb372da416d65b9c46ba0ef2c0b759dcdd1ed397 |
--- /dev/null |
+++ b/Source/core/events/InputDevice.cpp |
@@ -0,0 +1,26 @@ |
+// Copyright 2015 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 "config.h" |
+#include "core/events/InputDevice.h" |
+ |
+namespace blink { |
+ |
+InputDevice::InputDevice() |
+{ |
+} |
+ |
+InputDevice::InputDevice(const InputDeviceInit& initializer) |
+{ |
+ m_firesTouchEvents = initializer.firesTouchEvents(); |
+} |
+ |
+InputDevice::~InputDevice() |
+{ |
+} |
+ |
+DEFINE_TRACE(InputDevice) |
+{ |
+} |
+ |
+} // namespace blink |