Chromium Code Reviews| Index: Source/core/input/InputDevice.cpp |
| diff --git a/Source/core/input/InputDevice.cpp b/Source/core/input/InputDevice.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..64eae02c4dcc048883f2899f9a70729edce9a00c |
| --- /dev/null |
| +++ b/Source/core/input/InputDevice.cpp |
| @@ -0,0 +1,24 @@ |
| +// 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" |
|
tkent
2015/06/04 22:55:42
Add a blank line before this line.
lanwei
2015/06/16 18:11:15
Done.
|
| + |
|
tkent
2015/06/04 22:55:42
Remove this blank line.
|
| +#include "core/input/InputDevice.h" |
| + |
| +namespace blink { |
| + |
| +InputDevice::InputDevice(bool firesTouchEvents) |
| +{ |
| + m_firesTouchEvents = firesTouchEvents; |
| +} |
| + |
| +InputDevice::InputDevice(const InputDeviceInit& initializer) |
| +{ |
| + m_firesTouchEvents = initializer.firesTouchEvents(); |
| +} |
| + |
| +InputDevice::~InputDevice() |
| +{ |
| +} |
| + |
| +} // namespace blink |