summaryrefslogtreecommitdiff
path: root/chromium/content/common/input/input_event.cc
blob: 4991f85edbb0fe745d0dc4c3bf8079c0babad2c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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(const blink::WebInputEvent& web_event,
                       const ui::LatencyInfo& latency_info)
    : web_event(ui::WebInputEventTraits::Clone(web_event)),
      latency_info(latency_info) {}

InputEvent::~InputEvent() {}

}  // namespace content