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

Unified Diff: third_party/WebKit/Source/core/fetch/MockResourceClients.cpp

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (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/core/fetch/MockResourceClients.cpp
diff --git a/third_party/WebKit/Source/core/fetch/MockResourceClients.cpp b/third_party/WebKit/Source/core/fetch/MockResourceClients.cpp
index f735e582ac7f7226d8d7e7999c61073d8a22f4ea..e2ad472d72aefa05f2a0f8fa10b797586d6d3d87 100644
--- a/third_party/WebKit/Source/core/fetch/MockResourceClients.cpp
+++ b/third_party/WebKit/Source/core/fetch/MockResourceClients.cpp
@@ -9,7 +9,7 @@
namespace blink {
-MockResourceClient::MockResourceClient(PassRefPtrWillBeRawPtr<Resource> resource)
+MockResourceClient::MockResourceClient(RawPtr<Resource> resource)
: m_resource(resource.get())
, m_notifyFinishedCalled(false)
{
@@ -33,7 +33,7 @@ void MockResourceClient::removeAsClient()
m_resource = nullptr;
}
-MockImageResourceClient::MockImageResourceClient(PassRefPtrWillBeRawPtr<ImageResource> resource)
+MockImageResourceClient::MockImageResourceClient(RawPtr<ImageResource> resource)
: MockResourceClient(resource)
, m_imageChangedCount(0)
, m_imageNotifyFinishedCount(0)

Powered by Google App Engine
This is Rietveld 408576698