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

Unified Diff: third_party/WebKit/Source/core/loader/PrerenderHandle.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/PrerenderHandle.h
diff --git a/third_party/WebKit/Source/core/loader/PrerenderHandle.h b/third_party/WebKit/Source/core/loader/PrerenderHandle.h
index 9a8bb9a0626d0de3f527f49792fa34d4ad883c05..a3455aecb30c0499100c061c82ca1333913b0940 100644
--- a/third_party/WebKit/Source/core/loader/PrerenderHandle.h
+++ b/third_party/WebKit/Source/core/loader/PrerenderHandle.h
@@ -44,12 +44,11 @@ class Document;
class Prerender;
class PrerenderClient;
-class PrerenderHandle final : public NoBaseWillBeGarbageCollectedFinalized<PrerenderHandle>, public DocumentLifecycleObserver {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PrerenderHandle);
- USING_FAST_MALLOC_WILL_BE_REMOVED(PrerenderHandle);
+class PrerenderHandle final : public GarbageCollectedFinalized<PrerenderHandle>, public DocumentLifecycleObserver {
+ USING_GARBAGE_COLLECTED_MIXIN(PrerenderHandle);
WTF_MAKE_NONCOPYABLE(PrerenderHandle);
public:
- static PassOwnPtrWillBeRawPtr<PrerenderHandle> create(Document&, PrerenderClient*, const KURL&, unsigned prerenderRelTypes);
+ static RawPtr<PrerenderHandle> create(Document&, PrerenderClient*, const KURL&, unsigned prerenderRelTypes);
virtual ~PrerenderHandle();

Powered by Google App Engine
This is Rietveld 408576698