Chromium Code Reviews| Index: base/debug_util_win.cc |
| diff --git a/base/debug_util_win.cc b/base/debug_util_win.cc |
| index 906b71ee13246aa1ee09a0fc84d566715b9eede1..0ba267599a6b2219e4edef840e439d4fbca184e5 100644 |
| --- a/base/debug_util_win.cc |
| +++ b/base/debug_util_win.cc |
| @@ -101,3 +101,16 @@ void DebugUtil::BreakDebugger() { |
| __debugbreak(); |
| } |
| +// TODO(port): not implemented on Windows |
| +StackTrace::StackTrace() { |
| +} |
| + |
| +const void *const *StackTrace::Addresses(size_t* count) { |
| + *count = 0; |
| + return NULL; |
| +} |
| + |
| +void PrintBacktrace() { |
| + fprintf(stderr, "<printing stacktraces not implemented>\n"); |
|
Evan Martin
2009/01/16 18:30:08
you don't need this anymore with the below
|
| + NOTIMPLEMENTED(); |
| +} |