| Index: base/debug/stack_trace_win.cc | 
| diff --git a/base/debug/stack_trace_win.cc b/base/debug/stack_trace_win.cc | 
| index 653d2341c625cb98d9fae82f7946813caceb150b..6f4ad0262d26873915c9d5b099d7a82e203dcbd0 100644 | 
| --- a/base/debug/stack_trace_win.cc | 
| +++ b/base/debug/stack_trace_win.cc | 
| @@ -36,7 +36,7 @@ namespace { | 
| // just ignore it. | 
| class SymbolContext { | 
| public: | 
| -  static SymbolContext* Get() { | 
| +  static SymbolContext* GetInstance() { | 
| // We use a leaky singleton because code may call this during process | 
| // termination. | 
| return | 
| @@ -179,7 +179,7 @@ void StackTrace::PrintBacktrace() { | 
| } | 
|  | 
| void StackTrace::OutputToStream(std::ostream* os) { | 
| -  SymbolContext* context = SymbolContext::Get(); | 
| +  SymbolContext* context = SymbolContext::GetInstance(); | 
| DWORD error = context->init_error(); | 
| if (error != ERROR_SUCCESS) { | 
| (*os) << "Error initializing symbols (" << error | 
|  |