Index: src/log.h |
diff --git a/src/log.h b/src/log.h |
index aceb282c6a88885c68535c3ed7c28ef57b473369..03009b43ede2c3c410ae150d040a6add35932869 100644 |
--- a/src/log.h |
+++ b/src/log.h |
@@ -279,6 +279,9 @@ class StackTracer BASE_EMBEDDED { |
: low_stack_bound_(low_stack_bound) { } |
void Trace(TickSample* sample); |
private: |
+ // Maximum number of stack frames to capture |
+ static const int kMaxStackFrames = 5; |
+ |
unsigned int low_stack_bound_; |
}; |