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

Unified Diff: src/counters.h

Issue 2187693002: [Tracing] Embed V8 runtime call stats into tracing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: update Created 4 years, 5 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: src/counters.h
diff --git a/src/counters.h b/src/counters.h
index 397b0f39f09dc52c6e8bc825614155970497dc4a..8c98a2b7cd2c528a8e11cf86061f0af6d7790f25 100644
--- a/src/counters.h
+++ b/src/counters.h
@@ -482,6 +482,7 @@ double AggregatedMemoryHistogram<Histogram>::Aggregate(double current_ms,
struct RuntimeCallCounter {
explicit RuntimeCallCounter(const char* name) : name(name) {}
void Reset();
+ void Dump(std::stringstream& out);
Camillo Bruni 2016/08/01 07:43:55 nit: Please mark as non-inlined (V8_NOINLINE void
lpy 2016/08/01 18:17:55 Done.
const char* name;
int64_t count = 0;

Powered by Google App Engine
This is Rietveld 408576698