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

Unified Diff: chrome/browser/rlz/rlz.h

Issue 848963002: Fix official Mac build for strict virtual annotations check. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: chrome/browser/rlz/rlz.h
diff --git a/chrome/browser/rlz/rlz.h b/chrome/browser/rlz/rlz.h
index b40246247f17eefad290dbf1281d6ceab4c91cd8..4fd9b9c79a5421c2afedfef42ddcaa435ab16fb4 100644
--- a/chrome/browser/rlz/rlz.h
+++ b/chrome/browser/rlz/rlz.h
@@ -103,7 +103,7 @@ class RLZTracker : public content::NotificationObserver {
// testing purposes. Production code should never need to call these.
protected:
RLZTracker();
- virtual ~RLZTracker();
+ ~RLZTracker() override;
// Called by InitRlzFromProfileDelayed with values taken from |profile|.
static bool InitRlzDelayed(bool first_run,
@@ -118,7 +118,7 @@ class RLZTracker : public content::NotificationObserver {
virtual void DelayedInit();
// content::NotificationObserver implementation:
- virtual void Observe(int type,
+ void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;

Powered by Google App Engine
This is Rietveld 408576698