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

Unified Diff: third_party/WebKit/Source/core/loader/PingLoader.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (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/loader/PingLoader.h
diff --git a/third_party/WebKit/Source/core/loader/PingLoader.h b/third_party/WebKit/Source/core/loader/PingLoader.h
index 261f4cd0765a8764428d4214b6e7cb464eb4394a..3350441709737f56ad5cf8257f221a5ed973576d 100644
--- a/third_party/WebKit/Source/core/loader/PingLoader.h
+++ b/third_party/WebKit/Source/core/loader/PingLoader.h
@@ -57,10 +57,9 @@ class ResourceRequest;
// The ping loader is used by audit pings, beacon transmissions and image loads
// during page unloading.
//
-class CORE_EXPORT PingLoader : public RefCountedWillBeRefCountedGarbageCollected<PingLoader>, public LocalFrameLifecycleObserver, private WebURLLoaderClient {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PingLoader);
+class CORE_EXPORT PingLoader : public RefCountedGarbageCollected<PingLoader>, public LocalFrameLifecycleObserver, private WebURLLoaderClient {
+ USING_GARBAGE_COLLECTED_MIXIN(PingLoader);
WTF_MAKE_NONCOPYABLE(PingLoader);
- USING_FAST_MALLOC_WILL_BE_REMOVED(PingLoader);
public:
~PingLoader() override;

Powered by Google App Engine
This is Rietveld 408576698