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

Unified Diff: third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.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/HTMLImportTreeRoot.h
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.h b/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.h
index 0b043f5a9594aac988d64bfd752d904e6a8e1526..ba7feac705403ae0c5b260a220c969537fcef537 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.h
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.h
@@ -16,7 +16,7 @@ class KURL;
class HTMLImportTreeRoot : public HTMLImport {
public:
- static PassOwnPtrWillBeRawPtr<HTMLImportTreeRoot> create(Document*);
+ static RawPtr<HTMLImportTreeRoot> create(Document*);
~HTMLImportTreeRoot() override;
void dispose();
@@ -29,7 +29,7 @@ public:
void scheduleRecalcState();
- HTMLImportChild* add(PassOwnPtrWillBeRawPtr<HTMLImportChild>);
+ HTMLImportChild* add(RawPtr<HTMLImportChild>);
HTMLImportChild* find(const KURL&) const;
DECLARE_VIRTUAL_TRACE();
@@ -39,11 +39,11 @@ private:
void recalcTimerFired(Timer<HTMLImportTreeRoot>*);
- RawPtrWillBeMember<Document> m_document;
+ Member<Document> m_document;
Timer<HTMLImportTreeRoot> m_recalcTimer;
// List of import which has been loaded or being loaded.
- typedef WillBeHeapVector<OwnPtrWillBeMember<HTMLImportChild>> ImportList;
+ typedef HeapVector<Member<HTMLImportChild>> ImportList;
ImportList m_imports;
};

Powered by Google App Engine
This is Rietveld 408576698