| Index: content/common/input/input_event.cc
|
| diff --git a/content/common/input/input_event.cc b/content/common/input/input_event.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fae760e044c5b4be4b9a65123275ac1c6fd74902
|
| --- /dev/null
|
| +++ b/content/common/input/input_event.cc
|
| @@ -0,0 +1,29 @@
|
| +// Copyright (c) 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 "third_party/WebKit/public/web/WebInputEvent.h"
|
| +
|
| +namespace content {
|
| +
|
| +InputEvent::InputEvent(int64 id,
|
| + InputEventType type,
|
| + const IPC::Message& message)
|
| + : id(id),
|
| + type(type),
|
| + message(message),
|
| + state(INPUT_EVENT_UNHANDLED) {
|
| +}
|
| +
|
| +InputEvent::InputEvent()
|
| + : id(0),
|
| + type(INPUT_EVENT_INVALID),
|
| + state(INPUT_EVENT_UNHANDLED) {
|
| +}
|
| +
|
| +InputEvent::~InputEvent() {
|
| +}
|
| +
|
| +} // namespace content
|
|
|