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

Unified Diff: third_party/WebKit/Source/core/dom/ChildFrameDisconnector.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/dom/ChildFrameDisconnector.h
diff --git a/third_party/WebKit/Source/core/dom/ChildFrameDisconnector.h b/third_party/WebKit/Source/core/dom/ChildFrameDisconnector.h
index b57ad10d4211816823cdd30b0927f44f679eefca..7cd2423ab23987411c694f2625165966ad3c3f52 100644
--- a/third_party/WebKit/Source/core/dom/ChildFrameDisconnector.h
+++ b/third_party/WebKit/Source/core/dom/ChildFrameDisconnector.h
@@ -34,8 +34,8 @@ private:
void disconnectCollectedFrameOwners();
Node& root() const { return *m_root; }
- WillBeHeapVector<RefPtrWillBeMember<HTMLFrameOwnerElement>, 10> m_frameOwners;
- RawPtrWillBeMember<Node> m_root;
+ HeapVector<Member<HTMLFrameOwnerElement>, 10> m_frameOwners;
+ Member<Node> m_root;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/dom/CharacterData.cpp ('k') | third_party/WebKit/Source/core/dom/ChildListMutationScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698