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

Unified Diff: third_party/WebKit/Source/web/WebPerformance.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/WebPerformance.cpp
diff --git a/third_party/WebKit/Source/web/WebPerformance.cpp b/third_party/WebKit/Source/web/WebPerformance.cpp
index b0cb6f8b5be4f9e392166b3a02c4239ff437c77b..95b1812868b91614221e410b17da605f14d99399 100644
--- a/third_party/WebKit/Source/web/WebPerformance.cpp
+++ b/third_party/WebKit/Source/web/WebPerformance.cpp
@@ -190,12 +190,12 @@ double WebPerformance::firstContentfulPaint() const
return millisecondsToSeconds(m_private->timing()->firstContentfulPaint());
}
-WebPerformance::WebPerformance(const PassRefPtrWillBeRawPtr<Performance>& performance)
+WebPerformance::WebPerformance(const RawPtr<Performance>& performance)
: m_private(performance)
{
}
-WebPerformance& WebPerformance::operator=(const PassRefPtrWillBeRawPtr<Performance>& performance)
+WebPerformance& WebPerformance::operator=(const RawPtr<Performance>& performance)
{
m_private = performance;
return *this;
« no previous file with comments | « third_party/WebKit/Source/web/WebPepperSocketImpl.cpp ('k') | third_party/WebKit/Source/web/WebPluginContainerImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698