diff options
author | mostynb <mostynb@opera.com> | 2014-10-07 10:59:11 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-07 17:59:25 +0000 |
commit | 9e096de10e6fdcafde67df469ed9a6b8b156dfb1 (patch) | |
tree | 301e744a7e3e865e32a6fd0a779c115e926b7fd6 /base/debug/stack_trace_posix.cc | |
parent | 35d1d3a0d525595304fc8333373ddb660bd649cc (diff) | |
download | chromium_src-9e096de10e6fdcafde67df469ed9a6b8b156dfb1.zip chromium_src-9e096de10e6fdcafde67df469ed9a6b8b156dfb1.tar.gz chromium_src-9e096de10e6fdcafde67df469ed9a6b8b156dfb1.tar.bz2 |
replace OVERRIDE and FINAL with override and final in base/
BUG=417463
Review URL: https://codereview.chromium.org/611153004
Cr-Commit-Position: refs/heads/master@{#298520}
Diffstat (limited to 'base/debug/stack_trace_posix.cc')
-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 9e477cf..ae40d7c 100644 --- a/base/debug/stack_trace_posix.cc +++ b/base/debug/stack_trace_posix.cc @@ -402,7 +402,7 @@ class PrintBacktraceOutputHandler : public BacktraceOutputHandler { public: PrintBacktraceOutputHandler() {} - virtual void HandleOutput(const char* output) OVERRIDE { + 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); @@ -417,7 +417,7 @@ class StreamBacktraceOutputHandler : public BacktraceOutputHandler { explicit StreamBacktraceOutputHandler(std::ostream* os) : os_(os) { } - virtual void HandleOutput(const char* output) OVERRIDE { + virtual void HandleOutput(const char* output) override { (*os_) << output; } |