Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(694)

Unified Diff: content/browser/renderer_host/input/native_web_touch_event.cc

Issue 128613003: [Tracking Patch] Unified gesture detection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/input/native_web_touch_event.cc
diff --git a/content/browser/renderer_host/input/native_web_touch_event.cc b/content/browser/renderer_host/input/native_web_touch_event.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4202cfd538a22a9404e8313aae7c04779eff6caf
--- /dev/null
+++ b/content/browser/renderer_host/input/native_web_touch_event.cc
@@ -0,0 +1,25 @@
+// Copyright (c) 2012 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/browser/renderer_host/input/native_web_touch_event.h"
+
+namespace content {
+
+NativeWebTouchEvent::NativeWebTouchEvent() {}
+
+NativeWebTouchEvent::NativeWebTouchEvent(const blink::WebTouchEvent event)
+ : WebTouchEvent(event) {}
+
+NativeWebTouchEvent(const NativeWebTouchEvent& other)
+ : WebTouchEvent(other) {}
+
+NativeWebTouchEvent::~NativeWebTouchEvent() {}
+
+NativeWebTouchEvent& NativeWebTouchEvent::operator=(
+ const NativeWebTouchEvent& other) {
+ WebTouchEvent::operator=(other);
+ return *this;
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698