diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 07:20:55 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-07 07:20:55 +0000 |
commit | d5b69d9ff645cd71bc03a8ea6368426b7e3326e9 (patch) | |
tree | 066f7470a1b5491d75e6badddc41cde2797f5fb9 /base/debug | |
parent | 8a920397a83712b0a34d25502130a316897915eb (diff) | |
download | chromium_src-d5b69d9ff645cd71bc03a8ea6368426b7e3326e9.zip chromium_src-d5b69d9ff645cd71bc03a8ea6368426b7e3326e9.tar.gz chromium_src-d5b69d9ff645cd71bc03a8ea6368426b7e3326e9.tar.bz2 |
Linux/ChromeOS Chromium style checker cleanup, base/ edition.
Automated clean up of style checker errors that were missed due to the plugin
not being executed on implementation files.
BUG=115047
Review URL: https://chromiumcodereview.appspot.com/12236004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181246 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug')
-rw-r--r-- | base/debug/stack_trace_posix.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/debug/stack_trace_posix.cc b/base/debug/stack_trace_posix.cc index 5b31286..8a8ae47 100644 --- a/base/debug/stack_trace_posix.cc +++ b/base/debug/stack_trace_posix.cc @@ -374,7 +374,7 @@ class PrintBacktraceOutputHandler : public BacktraceOutputHandler { public: PrintBacktraceOutputHandler() {} - virtual void HandleOutput(const char* output) { + virtual void HandleOutput(const char* output) OVERRIDE { // NOTE: This code MUST be async-signal safe (it's used by in-process // stack dumping signal handler). NO malloc or stdio is allowed here. PrintToStderr(output); @@ -389,7 +389,7 @@ class StreamBacktraceOutputHandler : public BacktraceOutputHandler { explicit StreamBacktraceOutputHandler(std::ostream* os) : os_(os) { } - virtual void HandleOutput(const char* output) { + virtual void HandleOutput(const char* output) OVERRIDE { (*os_) << output; } |