From d5b69d9ff645cd71bc03a8ea6368426b7e3326e9 Mon Sep 17 00:00:00 2001 From: "rsleevi@chromium.org" Date: Thu, 7 Feb 2013 07:20:55 +0000 Subject: 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 --- base/debug/stack_trace_posix.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base/debug') 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; } -- cgit v1.1