| Index: Source/core/input/InputDevice.cpp
|
| diff --git a/Source/core/input/InputDevice.cpp b/Source/core/input/InputDevice.cpp
|
| index e6ae87e8f7739eb25695b39a021894d80bb0d57a..f422bbe56f749a1f848e2d2065bb404bb98dda97 100644
|
| --- a/Source/core/input/InputDevice.cpp
|
| +++ b/Source/core/input/InputDevice.cpp
|
| @@ -27,4 +27,10 @@ InputDevice* InputDevice::touchEventInstance()
|
| return instance;
|
| }
|
|
|
| +InputDevice* InputDevice::nonTouchEventInstance()
|
| +{
|
| + DEFINE_STATIC_LOCAL(Persistent<InputDevice>, instance, (InputDevice::create(false)));
|
| + return instance;
|
| +}
|
| +
|
| } // namespace blink
|
|
|