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

Unified Diff: third_party/WebKit/Source/core/html/imports/HTMLImport.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/HTMLImport.h
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImport.h b/third_party/WebKit/Source/core/html/imports/HTMLImport.h
index cd68791d5cbb8cb083bb8b3eec3dbfeaed0c753a..17f71b75b8f5eca3971a7cdc49d2d1bb1cc4bcc8 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImport.h
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImport.h
@@ -91,8 +91,7 @@ class HTMLImportLoader;
// The superclass of HTMLImportTreeRoot and HTMLImportChild
// This represents the import tree data structure.
-class HTMLImport : public NoBaseWillBeGarbageCollectedFinalized<HTMLImport>, public TreeNode<HTMLImport> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(HTMLImport);
+class HTMLImport : public GarbageCollectedFinalized<HTMLImport>, public TreeNode<HTMLImport> {
public:
enum SyncMode {
Sync = 0,

Powered by Google App Engine
This is Rietveld 408576698