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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp

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/bindings/core/v8/V8GCController.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp b/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
index 389756e6f31c8b9fc6c3dfe3dbbadb506d87786e..605dc353c8e1cdc4bd4624f07bfca9e8c2842dcd 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
@@ -229,7 +229,7 @@ private:
// v8 guarantees that Blink will not regain control while a v8 GC runs
// (=> no Oilpan GCs will be triggered), hence raw, untraced members
// can safely be kept here.
- Vector<RawPtrWillBeUntracedMember<Node>> m_groupsWhichNeedRetainerInfo;
+ Vector<UntracedMember<Node>> m_groupsWhichNeedRetainerInfo;
int m_domObjectsWithPendingActivity;
bool m_liveRootGroupIdSet;
bool m_constructRetainedObjectInfos;
@@ -480,7 +480,7 @@ public:
private:
v8::Isolate* m_isolate;
- RawPtrWillBePersistent<ExecutionContext> m_executionContext;
+ Persistent<ExecutionContext> m_executionContext;
bool m_pendingActivityFound;
};

Powered by Google App Engine
This is Rietveld 408576698