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

Unified Diff: third_party/WebKit/Source/core/html/imports/HTMLImportChild.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/HTMLImportChild.h
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportChild.h b/third_party/WebKit/Source/core/html/imports/HTMLImportChild.h
index bab4ec201ad7e1ca3b12734937e8aa981fbd4711..35a52dd197972ce3f52495c335495b51e9279ec5 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportChild.h
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportChild.h
@@ -93,12 +93,12 @@ private:
void invalidateCustomElementMicrotaskStep();
KURL m_url;
- WeakPtrWillBeWeakMember<CustomElementMicrotaskImportStep> m_customElementMicrotaskStep;
+ WeakMember<CustomElementMicrotaskImportStep> m_customElementMicrotaskStep;
#if !ENABLE(OILPAN)
WeakPtrFactory<HTMLImportChild> m_weakFactory;
#endif
- RawPtrWillBeMember<HTMLImportLoader> m_loader;
- RawPtrWillBeMember<HTMLImportChildClient> m_client;
+ Member<HTMLImportLoader> m_loader;
+ Member<HTMLImportChildClient> m_client;
};
inline HTMLImportChild* toHTMLImportChild(HTMLImport* import)

Powered by Google App Engine
This is Rietveld 408576698