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

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

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (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 464fbe09ea35a76ec1d10d01a25fc59efc8ed839..b9ef96ab2865dce962f52afb8bac12df8de735e9 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;
@@ -486,7 +486,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