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. |