| Index: base/debug/stack_trace_win.cc
|
| diff --git a/base/debug/stack_trace_win.cc b/base/debug/stack_trace_win.cc
|
| index f00017f2620c0f0f1b70f91833cb261ff20c1145..97376a26cbaf03f295661654750b017962395d80 100644
|
| --- a/base/debug/stack_trace_win.cc
|
| +++ b/base/debug/stack_trace_win.cc
|
| @@ -174,11 +174,11 @@ StackTrace::StackTrace(EXCEPTION_POINTERS* exception_pointers) {
|
| }
|
| }
|
|
|
| -void StackTrace::PrintBacktrace() {
|
| +void StackTrace::PrintBacktrace() const {
|
| OutputToStream(&std::cerr);
|
| }
|
|
|
| -void StackTrace::OutputToStream(std::ostream* os) {
|
| +void StackTrace::OutputToStream(std::ostream* os) const {
|
| SymbolContext* context = SymbolContext::GetInstance();
|
| DWORD error = context->init_error();
|
| if (error != ERROR_SUCCESS) {
|
|
|