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

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

Issue 2567913002: Rename ActiveDOMObject to SuspendableObject (Closed)
Patch Set: Created 4 years 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 f12153a5307ca89a9de7856d5b0bc53e9c1a2ab7..1a003fcf9f2df910a0ca2ecf2ef8d0ca17545e3b 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
@@ -227,10 +227,11 @@ class MajorGCWrapperVisitor : public v8::PersistentHandleVisitor {
alreadyAdded = root;
}
}
- if (m_liveRootGroupIdSet)
+ if (m_liveRootGroupIdSet) {
profiler->SetRetainedObjectInfo(
liveRootId(),
- new ActiveDOMObjectsInfo(m_domObjectsWithPendingActivity));
+ new SuspendableObjectsInfo(m_domObjectsWithPendingActivity));
+ }
}
private:

Powered by Google App Engine
This is Rietveld 408576698