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

Unified Diff: third_party/WebKit/Source/core/events/Event.h

Issue 2579693005: Remove legacy constants on Event (Closed)
Patch Set: update newly imported wpt/dom/historical.html Created 4 years 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: third_party/WebKit/Source/core/events/Event.h
diff --git a/third_party/WebKit/Source/core/events/Event.h b/third_party/WebKit/Source/core/events/Event.h
index 0c8cc52238514c54a7af228feaa6b8e53a3d5793..b5d4bb51e58737c830b4bef5c5dda35052ad9897 100644
--- a/third_party/WebKit/Source/core/events/Event.h
+++ b/third_party/WebKit/Source/core/events/Event.h
@@ -54,25 +54,6 @@ class CORE_EXPORT Event : public GarbageCollectedFinalized<Event>,
kBubblingPhase = 3
};
- enum EventType {
- kMousedown = 1,
- kMouseup = 2,
- kMouseover = 4,
- kMouseout = 8,
- kMousemove = 16,
- kMousedrag = 32,
- kClick = 64,
- kDblclick = 128,
- kKeydown = 256,
- kKeyup = 512,
- kKeypress = 1024,
- kDragdrop = 2048,
- kFocus = 4096,
- kBlur = 8192,
- kSelect = 16384,
- kChange = 32768
- };
-
enum RailsMode {
RailsModeFree = 0,
RailsModeHorizontal = 1,

Powered by Google App Engine
This is Rietveld 408576698