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

Unified Diff: Source/core/events/EventDispatchMediator.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/core/events/EventDispatchMediator.cpp
diff --git a/Source/core/events/EventDispatchMediator.cpp b/Source/core/events/EventDispatchMediator.cpp
index 032d0b8f9ad50ca1950fd638d4fc92648fd6d85c..0ee176245b9a4e5896ae5361ede24e706ada09bd 100644
--- a/Source/core/events/EventDispatchMediator.cpp
+++ b/Source/core/events/EventDispatchMediator.cpp
@@ -36,12 +36,12 @@
namespace WebCore {
-PassRefPtr<EventDispatchMediator> EventDispatchMediator::create(PassRefPtr<Event> event)
+PassRefPtr<EventDispatchMediator> EventDispatchMediator::create(PassRefPtrWillBeRawPtr<Event> event)
{
return adoptRef(new EventDispatchMediator(event));
}
-EventDispatchMediator::EventDispatchMediator(PassRefPtr<Event> event)
+EventDispatchMediator::EventDispatchMediator(PassRefPtrWillBeRawPtr<Event> event)
: m_event(event)
{
}

Powered by Google App Engine
This is Rietveld 408576698