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

Unified Diff: components/crash/browser/crash_handler_host_linux.h

Issue 684513002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
Index: components/crash/browser/crash_handler_host_linux.h
diff --git a/components/crash/browser/crash_handler_host_linux.h b/components/crash/browser/crash_handler_host_linux.h
index f655360fd0effeaf68fb9fff6133b3fce89b3643..876a0a5eb13e37d4548f8574a29113c5bac8181d 100644
--- a/components/crash/browser/crash_handler_host_linux.h
+++ b/components/crash/browser/crash_handler_host_linux.h
@@ -36,7 +36,7 @@ class CrashHandlerHostLinux : public base::MessageLoopForIO::Watcher,
CrashHandlerHostLinux(const std::string& process_type,
const base::FilePath& dumps_path,
bool upload);
- virtual ~CrashHandlerHostLinux();
+ ~CrashHandlerHostLinux() override;
// Starts the uploader thread. Must be called immediately after creating the
// class.
@@ -49,11 +49,11 @@ class CrashHandlerHostLinux : public base::MessageLoopForIO::Watcher,
}
// MessagePumbLibevent::Watcher impl:
- virtual void OnFileCanWriteWithoutBlocking(int fd) override;
- virtual void OnFileCanReadWithoutBlocking(int fd) override;
+ void OnFileCanWriteWithoutBlocking(int fd) override;
+ void OnFileCanReadWithoutBlocking(int fd) override;
// MessageLoop::DestructionObserver impl:
- virtual void WillDestroyCurrentMessageLoop() override;
+ void WillDestroyCurrentMessageLoop() override;
// Whether we are shutting down or not.
bool IsShuttingDown() const;

Powered by Google App Engine
This is Rietveld 408576698