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

Unified Diff: third_party/WebKit/Source/web/WebDOMEvent.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/web/WebDOMEvent.cpp
diff --git a/third_party/WebKit/Source/web/WebDOMEvent.cpp b/third_party/WebKit/Source/web/WebDOMEvent.cpp
index 19e08dc083aa3fbdc86f1a5276c152768af6d144..fba00fff3b131f2c12ac57919884d1dd4f92b8c1 100644
--- a/third_party/WebKit/Source/web/WebDOMEvent.cpp
+++ b/third_party/WebKit/Source/web/WebDOMEvent.cpp
@@ -45,17 +45,17 @@ void WebDOMEvent::assign(const WebDOMEvent& other)
m_private = other.m_private;
}
-void WebDOMEvent::assign(const PassRefPtrWillBeRawPtr<Event>& event)
+void WebDOMEvent::assign(const RawPtr<Event>& event)
{
m_private = event;
}
-WebDOMEvent::WebDOMEvent(const PassRefPtrWillBeRawPtr<Event>& event)
+WebDOMEvent::WebDOMEvent(const RawPtr<Event>& event)
: m_private(event)
{
}
-WebDOMEvent::operator PassRefPtrWillBeRawPtr<Event>() const
+WebDOMEvent::operator RawPtr<Event>() const
{
return m_private.get();
}
« no previous file with comments | « third_party/WebKit/Source/web/ViewportAnchor.h ('k') | third_party/WebKit/Source/web/WebDOMMediaStreamTrack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698