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

Unified Diff: public/web/WebLeakDetector.h

Issue 450183002: Add instance counters of Resource and AudioNode, and expose them via WebLeakDetector. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/web/WebLeakDetector.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebLeakDetector.h
diff --git a/public/web/WebLeakDetector.h b/public/web/WebLeakDetector.h
index 99a3838215735ba7415d108cd5776b3b292f1688..d5ce6b910c943bd042ab8f73e1648a5ae421b593 100644
--- a/public/web/WebLeakDetector.h
+++ b/public/web/WebLeakDetector.h
@@ -39,9 +39,11 @@ namespace blink {
class WebLeakDetectorClient {
public:
struct Result {
- unsigned numberOfLiveNodes;
+ unsigned numberOfLiveAudioNodes;
unsigned numberOfLiveDocuments;
+ unsigned numberOfLiveNodes;
unsigned numberOfLiveRenderObjects;
+ unsigned numberOfLiveResources;
};
virtual void onLeakDetectionComplete(const Result&) = 0;
« no previous file with comments | « Source/web/WebLeakDetector.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698