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

Unified Diff: third_party/WebKit/Source/core/fetch/MockImageResourceClient.h

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, 10 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/MockImageResourceClient.h
diff --git a/third_party/WebKit/Source/core/fetch/MockImageResourceClient.h b/third_party/WebKit/Source/core/fetch/MockImageResourceClient.h
index b877a92d9ff2275ef0ea6867f7c282664f971959..90452b25e517a34c9ed94260c8ce952fc321cdfa 100644
--- a/third_party/WebKit/Source/core/fetch/MockImageResourceClient.h
+++ b/third_party/WebKit/Source/core/fetch/MockImageResourceClient.h
@@ -39,7 +39,7 @@ namespace blink {
class MockImageResourceClient final : public ImageResourceClient {
public:
- explicit MockImageResourceClient(const PassRefPtrWillBeRawPtr<Resource>);
+ explicit MockImageResourceClient(const RawPtr<Resource>);
~MockImageResourceClient() override;
void imageChanged(ImageResource*, const IntRect*) override
@@ -57,7 +57,7 @@ public:
private:
// TODO(Oilpan): properly trace when ImageResourceClient is on the heap.
- RawPtrWillBeUntracedMember<Resource> m_resource;
+ UntracedMember<Resource> m_resource;
int m_imageChangedCount;
bool m_notifyFinishedCalled;
};

Powered by Google App Engine
This is Rietveld 408576698