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

Unified Diff: third_party/WebKit/public/platform/WebInputEvent.h

Issue 2173073003: Move WebInputEvent into public/platform from public/web (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gn build failure with android Created 4 years, 5 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
« no previous file with comments | « third_party/WebKit/public/blink_headers.gypi ('k') | third_party/WebKit/public/platform/WebTouchPoint.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebInputEvent.h
diff --git a/third_party/WebKit/public/web/WebInputEvent.h b/third_party/WebKit/public/platform/WebInputEvent.h
similarity index 98%
copy from third_party/WebKit/public/web/WebInputEvent.h
copy to third_party/WebKit/public/platform/WebInputEvent.h
index 98a1b1859e44e2986f8d50239b58d6681b4da2be..04d6d32ead6ff7de0ae766ca3744280dd4ccb406 100644
--- a/third_party/WebKit/public/web/WebInputEvent.h
+++ b/third_party/WebKit/public/platform/WebInputEvent.h
@@ -31,10 +31,10 @@
#ifndef WebInputEvent_h
#define WebInputEvent_h
-#include "../platform/WebCommon.h"
-#include "../platform/WebGestureDevice.h"
-#include "../platform/WebPointerProperties.h"
-#include "../platform/WebRect.h"
+#include "WebCommon.h"
+#include "WebGestureDevice.h"
+#include "WebPointerProperties.h"
+#include "WebRect.h"
#include "WebTouchPoint.h"
#include <string.h>
@@ -611,11 +611,11 @@ class WebTouchEvent : public WebInputEvent {
public:
// Maximum number of simultaneous touches supported on
// Ash/Aura.
- enum { touchesLengthCap = 16 };
+ enum { kTouchesLengthCap = 16 };
unsigned touchesLength;
// List of all touches, regardless of state.
- WebTouchPoint touches[touchesLengthCap];
+ WebTouchPoint touches[kTouchesLengthCap];
// Whether the event is blocking, non-blocking, all event
// listeners were passive or was forced to be non-blocking.
« no previous file with comments | « third_party/WebKit/public/blink_headers.gypi ('k') | third_party/WebKit/public/platform/WebTouchPoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698