| Index: base/debug/stack_trace.h
|
| diff --git a/base/debug/stack_trace.h b/base/debug/stack_trace.h
|
| index d8d792d10ff146eacd09615b183eafe7ebb471a4..860fff15ce0bdd2446d12fcd4715d8ebd5bfb173 100644
|
| --- a/base/debug/stack_trace.h
|
| +++ b/base/debug/stack_trace.h
|
| @@ -42,10 +42,10 @@ class BASE_API StackTrace {
|
| const void* const* Addresses(size_t* count);
|
|
|
| // Prints a backtrace to stderr
|
| - void PrintBacktrace();
|
| + void PrintBacktrace() const;
|
|
|
| // Resolves backtrace to symbols and write to stream.
|
| - void OutputToStream(std::ostream* os);
|
| + void OutputToStream(std::ostream* os) const;
|
|
|
| private:
|
| // From http://msdn.microsoft.com/en-us/library/bb204633.aspx,
|
|
|