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

Unified Diff: Source/core/page/EventHandler.cpp

Issue 262093006: Oilpan: Make the Node hierarchy RefCountedGarbageCollected instead of TreeShared. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments. Created 6 years, 7 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/html/shadow/TextControlInnerElements.cpp ('k') | Source/core/page/Page.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/EventHandler.cpp
diff --git a/Source/core/page/EventHandler.cpp b/Source/core/page/EventHandler.cpp
index 2c57862dcc21a9a1e890935f48db0ffca70a537c..8b45d1feb1e2dcd5e2892ab1f12d2fde4637e2b2 100644
--- a/Source/core/page/EventHandler.cpp
+++ b/Source/core/page/EventHandler.cpp
@@ -2353,7 +2353,9 @@ bool EventHandler::handleGestureScrollEnd(const PlatformGestureEvent& gestureEve
clearGestureScrollNodes();
if (node) {
+#if !ENABLE(OILPAN)
Erik Corry 2014/05/06 09:02:25 Maybe just remove this assert completely since it'
Mads Ager (chromium) 2014/05/06 09:16:51 Done.
ASSERT(node->refCount() > 0);
+#endif
passGestureEventToWidgetIfPossible(gestureEvent, node->renderer());
}
« no previous file with comments | « Source/core/html/shadow/TextControlInnerElements.cpp ('k') | Source/core/page/Page.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698