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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.h

Issue 1479113002: [Oilpan] Replace a raw pointer with UntracedMember in RetainedDOMInfo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « no previous file | third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.h b/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.h
index 0e84230078ef0d9ccf4d4d8a5386c3619eac9edf..340f18341b5a6e96dce9f95a4c8d894b2701b5a3 100644
--- a/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.h
+++ b/third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.h
@@ -57,8 +57,7 @@ public:
private:
// V8 guarantees to keep RetainedObjectInfos alive only during a GC or heap snapshotting round, when renderer
// doesn't get control. This allows us to use raw pointers.
- GC_PLUGIN_IGNORE("553613")
- Node* m_root;
+ RawPtrWillBeUntracedMember<Node> m_root;
haraken 2015/11/27 05:11:11 Yes, this pointer is pretty special (as commented
};
class ActiveDOMObjectsInfo final : public RetainedObjectInfo {
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/RetainedDOMInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698