Index: base/debug/stack_trace.h |
diff --git a/base/debug/stack_trace.h b/base/debug/stack_trace.h |
index 99bb4522620c05ed8a77eb581646c5bd9b5405fb..ba020ee37bd51182bfebc6e47610571a27af61cd 100644 |
--- a/base/debug/stack_trace.h |
+++ b/base/debug/stack_trace.h |
@@ -63,7 +63,9 @@ class BASE_EXPORT StackTrace { |
static const int kMaxTraces = 62; |
void* trace_[kMaxTraces]; |
- int count_; |
+ |
+ // The number of valid frames in |trace_|. |
+ size_t count_; |
}; |
} // namespace debug |