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_ |