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

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

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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/data/webui/chrome_send_browsertest.h ('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 fc2fb48f7e76f38a92df88876396a4bba1b97558..943712aeddceb80f0c7e76467b45910e68f95f09 100644
--- a/chrome/test/logging/win/log_file_printer.cc
+++ b/chrome/test/logging/win/log_file_printer.cc
@@ -87,34 +87,34 @@ const char* GetTraceTypeString(char event_type) {
class EventPrinter : public logging_win::LogFileDelegate {
public:
explicit EventPrinter(std::ostream* out);
- virtual ~EventPrinter();
-
- virtual void OnUnknownEvent(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;
-
- virtual void OnLogMessage(const EVENT_TRACE* event,
- logging::LogSeverity severity,
- const base::StringPiece& message) override;
-
- virtual void OnLogMessageFull(const EVENT_TRACE* event,
- logging::LogSeverity severity,
- DWORD stack_depth,
- const intptr_t* backtrace,
- int line,
- const base::StringPiece& file,
- const base::StringPiece& message) override;
-
- virtual void OnTraceEvent(const EVENT_TRACE* event,
- const base::StringPiece& name,
- char type,
- intptr_t id,
- const base::StringPiece& extra,
- DWORD stack_depth,
- const intptr_t* backtrace) override;
+ ~EventPrinter() override;
+
+ void OnUnknownEvent(const EVENT_TRACE* event) override;
+
+ void OnUnparsableEvent(const EVENT_TRACE* event) override;
+
+ void OnFileHeader(const EVENT_TRACE* event,
+ const TRACE_LOGFILE_HEADER* header) override;
+
+ void OnLogMessage(const EVENT_TRACE* event,
+ logging::LogSeverity severity,
+ const base::StringPiece& message) override;
+
+ void OnLogMessageFull(const EVENT_TRACE* event,
+ logging::LogSeverity severity,
+ DWORD stack_depth,
+ const intptr_t* backtrace,
+ int line,
+ const base::StringPiece& file,
+ const base::StringPiece& message) override;
+
+ void OnTraceEvent(const EVENT_TRACE* event,
+ const base::StringPiece& name,
+ char type,
+ intptr_t id,
+ const base::StringPiece& extra,
+ DWORD stack_depth,
+ const intptr_t* backtrace) override;
private:
void PrintTimeStamp(LARGE_INTEGER time_stamp);
« no previous file with comments | « chrome/test/data/webui/chrome_send_browsertest.h ('k') | chrome/test/logging/win/test_log_collector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698