Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7496)

Unified Diff: chrome/test/logging/win/log_file_printer.cc

Issue 637933002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/gpu/webgl_infobar_browsertest.cc ('k') | chrome/test/logging/win/test_log_collector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/logging/win/log_file_printer.cc
diff --git a/chrome/test/logging/win/log_file_printer.cc b/chrome/test/logging/win/log_file_printer.cc
index c22f6fae5be332f87981833bb9a7f89c3d9bf148..d374ada0636a36fa0ac008dd12ba5413cad63eef 100644
--- a/chrome/test/logging/win/log_file_printer.cc
+++ b/chrome/test/logging/win/log_file_printer.cc
@@ -89,16 +89,16 @@ class EventPrinter : public logging_win::LogFileDelegate {
explicit EventPrinter(std::ostream* out);
virtual ~EventPrinter();
- virtual void OnUnknownEvent(const EVENT_TRACE* event) OVERRIDE;
+ virtual void OnUnknownEvent(const EVENT_TRACE* event) override;
- virtual void OnUnparsableEvent(const EVENT_TRACE* event) OVERRIDE;
+ virtual void OnUnparsableEvent(const EVENT_TRACE* event) override;
virtual void OnFileHeader(const EVENT_TRACE* event,
- const TRACE_LOGFILE_HEADER* header) OVERRIDE;
+ const TRACE_LOGFILE_HEADER* header) override;
virtual void OnLogMessage(const EVENT_TRACE* event,
logging::LogSeverity severity,
- const base::StringPiece& message) OVERRIDE;
+ const base::StringPiece& message) override;
virtual void OnLogMessageFull(const EVENT_TRACE* event,
logging::LogSeverity severity,
@@ -106,7 +106,7 @@ class EventPrinter : public logging_win::LogFileDelegate {
const intptr_t* backtrace,
int line,
const base::StringPiece& file,
- const base::StringPiece& message) OVERRIDE;
+ const base::StringPiece& message) override;
virtual void OnTraceEvent(const EVENT_TRACE* event,
const base::StringPiece& name,
@@ -114,7 +114,7 @@ class EventPrinter : public logging_win::LogFileDelegate {
intptr_t id,
const base::StringPiece& extra,
DWORD stack_depth,
- const intptr_t* backtrace) OVERRIDE;
+ const intptr_t* backtrace) override;
private:
void PrintTimeStamp(LARGE_INTEGER time_stamp);
« no previous file with comments | « chrome/test/gpu/webgl_infobar_browsertest.cc ('k') | chrome/test/logging/win/test_log_collector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698