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

Unified Diff: third_party/WebKit/Source/core/dom/NodeChildRemovalTracker.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
« no previous file with comments | « third_party/WebKit/Source/core/dom/Node.cpp ('k') | third_party/WebKit/Source/core/dom/NodeFilter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/NodeChildRemovalTracker.h
diff --git a/third_party/WebKit/Source/core/dom/NodeChildRemovalTracker.h b/third_party/WebKit/Source/core/dom/NodeChildRemovalTracker.h
index c8499f9f3ea2d7c72813b86293020488f028929c..8f696b9b74e6d99c9eb3787990a026b88b1dd3d7 100644
--- a/third_party/WebKit/Source/core/dom/NodeChildRemovalTracker.h
+++ b/third_party/WebKit/Source/core/dom/NodeChildRemovalTracker.h
@@ -44,7 +44,7 @@ private:
Node& node() const { return *m_node; }
NodeChildRemovalTracker* previous() { return m_previous; }
- RawPtrWillBeMember<Node> m_node;
+ Member<Node> m_node;
// Using raw pointers are safe because these NodeChildRemovalTrackers are
// guaranteed to be on a stack.
NodeChildRemovalTracker* m_previous;
« no previous file with comments | « third_party/WebKit/Source/core/dom/Node.cpp ('k') | third_party/WebKit/Source/core/dom/NodeFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698