diff options
Diffstat (limited to 'chromium/content/common/input/input_event.cc')
-rw-r--r-- | chromium/content/common/input/input_event.cc | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/chromium/content/common/input/input_event.cc b/chromium/content/common/input/input_event.cc deleted file mode 100644 index 4e11e69a36a..00000000000 --- a/chromium/content/common/input/input_event.cc +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2013 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/input/input_event.h" - -#include "ui/events/blink/web_input_event_traits.h" - -namespace content { - -InputEvent::InputEvent() {} - -InputEvent::InputEvent(ui::WebScopedInputEvent event, - const ui::LatencyInfo& info) - : web_event(std::move(event)), latency_info(info) {} - -InputEvent::InputEvent(const blink::WebInputEvent& web_event, - const ui::LatencyInfo& latency_info) - : web_event(web_event.Clone()), latency_info(latency_info) {} - -InputEvent::~InputEvent() {} - -} // namespace content |