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

Unified Diff: Source/core/dom/Document.h

Issue 1230013003: Remove the (already disabled) OverflowChangedEvent runtime flag (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | « Source/core/core.gypi ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index e7d150ab1176df4d302f74f5bb67dc523c494c3d..fb804bea7f61990e47a7d900a8fe23d887e2239e 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -655,13 +655,12 @@ public:
DOMNODEREMOVEDFROMDOCUMENT_LISTENER = 1 << 3,
DOMNODEINSERTEDINTODOCUMENT_LISTENER = 1 << 4,
DOMCHARACTERDATAMODIFIED_LISTENER = 1 << 5,
- OVERFLOWCHANGED_LISTENER = 1 << 6,
- ANIMATIONEND_LISTENER = 1 << 7,
- ANIMATIONSTART_LISTENER = 1 << 8,
- ANIMATIONITERATION_LISTENER = 1 << 9,
- TRANSITIONEND_LISTENER = 1 << 10,
- SCROLL_LISTENER = 1 << 12
- // 4 bits remaining
+ ANIMATIONEND_LISTENER = 1 << 6,
+ ANIMATIONSTART_LISTENER = 1 << 7,
+ ANIMATIONITERATION_LISTENER = 1 << 8,
+ TRANSITIONEND_LISTENER = 1 << 9,
+ SCROLL_LISTENER = 1 << 10
+ // 5 bits remaining
};
bool hasListenerType(ListenerType listenerType) const { return (m_listenerTypes & listenerType); }
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698