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

Unified Diff: base/threading/watchdog.h

Issue 614103004: replace 'virtual ... OVERRIDE' with '... override' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: process base/ Created 6 years, 3 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: base/threading/watchdog.h
diff --git a/base/threading/watchdog.h b/base/threading/watchdog.h
index abcb4f128094946d16e50984228cf46263f7429e..ea3be36d1a8c450b9d122f792de0d71e2f21619c 100644
--- a/base/threading/watchdog.h
+++ b/base/threading/watchdog.h
@@ -65,7 +65,8 @@ class BASE_EXPORT Watchdog {
public:
explicit ThreadDelegate(Watchdog* watchdog) : watchdog_(watchdog) {
}
- virtual void ThreadMain() OVERRIDE;
+ void ThreadMain() override;
+
private:
void SetThreadName() const;

Powered by Google App Engine
This is Rietveld 408576698