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

Unified Diff: Source/WebCore/dom/GestureEvent.cpp

Issue 12703032: Revert 146744 "Refactoring: Pull Node::disabled() and Node::isIn..." (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1453/
Patch Set: Created 7 years, 9 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/WebCore/dom/EventDispatcher.cpp ('k') | Source/WebCore/dom/MouseEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/GestureEvent.cpp
===================================================================
--- Source/WebCore/dom/GestureEvent.cpp (revision 146891)
+++ Source/WebCore/dom/GestureEvent.cpp (working copy)
@@ -29,7 +29,6 @@
#include "GestureEvent.h"
-#include "Element.h"
#include <wtf/text/AtomicString.h>
namespace WebCore {
@@ -119,7 +118,7 @@
bool GestureEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const
{
- if (dispatcher->node()->isElementNode() && toElement(dispatcher->node())->disabled())
+ if (dispatcher->node()->disabled())
return true;
dispatcher->dispatch();
« no previous file with comments | « Source/WebCore/dom/EventDispatcher.cpp ('k') | Source/WebCore/dom/MouseEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698