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

Unified Diff: src/sampler.h

Issue 14208012: Move StackTracer to sampler.h (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Updated refs Created 7 years, 8 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 | « src/log.cc ('k') | src/sampler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/sampler.h
diff --git a/src/sampler.h b/src/sampler.h
index 2b8b75d60e565baf5baca99dabf2055d0f754f90..45e14e9cf02e48c83a350538c7e2316754565e9c 100644
--- a/src/sampler.h
+++ b/src/sampler.h
@@ -114,6 +114,12 @@ class Sampler {
};
+// Class that extracts stack trace, used for profiling.
+class StackTracer : public AllStatic {
Sven Panne 2013/04/17 07:00:37 If we're honest, this is not a class at all. :-) D
+ public:
+ static void Trace(Isolate* isolate, TickSample* sample);
+};
+
} } // namespace v8::internal
#endif // V8_SAMPLER_H_
« no previous file with comments | « src/log.cc ('k') | src/sampler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698