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

Unified Diff: third_party/WebKit/Source/web/WebLeakDetector.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/web/WebLeakDetector.cpp
diff --git a/third_party/WebKit/Source/web/WebLeakDetector.cpp b/third_party/WebKit/Source/web/WebLeakDetector.cpp
index d21f2374e280a686358661d76c9f19096775cb64..b1814febd41ec89eefefbfa03c55d288edb41055 100644
--- a/third_party/WebKit/Source/web/WebLeakDetector.cpp
+++ b/third_party/WebKit/Source/web/WebLeakDetector.cpp
@@ -162,8 +162,8 @@ void WebLeakDetectorImpl::delayedReport(TimerBase*) {
InstanceCounters::counterValue(InstanceCounters::LayoutObjectCounter);
result.numberOfLiveResources =
InstanceCounters::counterValue(InstanceCounters::ResourceCounter);
- result.numberOfLiveActiveDOMObjects =
- InstanceCounters::counterValue(InstanceCounters::ActiveDOMObjectCounter);
+ result.numberOfLiveSuspendableObjects = InstanceCounters::counterValue(
+ InstanceCounters::SuspendableObjectCounter);
result.numberOfLiveScriptPromises =
InstanceCounters::counterValue(InstanceCounters::ScriptPromiseCounter);
result.numberOfLiveFrames =

Powered by Google App Engine
This is Rietveld 408576698