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

Unified Diff: Source/web/WebNode.cpp

Issue 216523002: Oilpan: Replace most of RefPtrs for Event objects with oilpan's transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
Index: Source/web/WebNode.cpp
diff --git a/Source/web/WebNode.cpp b/Source/web/WebNode.cpp
index eb3f9e9b6c07cfd9b93754349f610af24d333a70..48306bd1fb944b96ca540c26873d0329444707ee 100644
--- a/Source/web/WebNode.cpp
+++ b/Source/web/WebNode.cpp
@@ -184,7 +184,7 @@ void WebNode::addEventListener(const WebString& eventType, WebDOMEventListener*
bool WebNode::dispatchEvent(const WebDOMEvent& event)
{
if (!event.isNull())
- return m_private->dispatchEvent(event);
+ return m_private->dispatchEvent(event.getValue());
return false;
}

Powered by Google App Engine
This is Rietveld 408576698