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

Unified Diff: third_party/WebKit/Source/core/html/imports/HTMLImportsController.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, 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/html/imports/HTMLImportsController.h
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportsController.h b/third_party/WebKit/Source/core/html/imports/HTMLImportsController.h
index 37c4e69060ee1559e0cad657d3bd1cbbd92cdb0e..e23614ac214b8f263c0307f927b6dd12402e138b 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportsController.h
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportsController.h
@@ -46,9 +46,8 @@ class HTMLImportLoader;
class HTMLImportTreeRoot;
class KURL;
-class HTMLImportsController final : public NoBaseWillBeGarbageCollectedFinalized<HTMLImportsController>, public WillBeHeapSupplement<Document> {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLImportsController);
- USING_FAST_MALLOC_WILL_BE_REMOVED(HTMLImportsController);
+class HTMLImportsController final : public GarbageCollectedFinalized<HTMLImportsController>, public HeapSupplement<Document> {
+ USING_GARBAGE_COLLECTED_MIXIN(HTMLImportsController);
public:
static const char* supplementName();
static void provideTo(Document&);
@@ -78,8 +77,8 @@ private:
void dispose();
- OwnPtrWillBeMember<HTMLImportTreeRoot> m_root;
- using LoaderList = WillBeHeapVector<OwnPtrWillBeMember<HTMLImportLoader>>;
+ Member<HTMLImportTreeRoot> m_root;
+ using LoaderList = HeapVector<Member<HTMLImportLoader>>;
LoaderList m_loaders;
};

Powered by Google App Engine
This is Rietveld 408576698