| 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;
|
|
|