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

Unified Diff: chrome/browser/ui/browser.cc

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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
Index: chrome/browser/ui/browser.cc
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
index f2b64dae30a79f4babca35a99266a0b8fd9a3efa..1b5e6971449e871278e51567b65840270c236318 100644
--- a/chrome/browser/ui/browser.cc
+++ b/chrome/browser/ui/browser.cc
@@ -312,11 +312,11 @@ class Browser::InterstitialObserver : public content::WebContentsObserver {
browser_(browser) {
}
- virtual void DidAttachInterstitialPage() override {
+ void DidAttachInterstitialPage() override {
browser_->UpdateBookmarkBarState(BOOKMARK_BAR_STATE_CHANGE_TAB_STATE);
}
- virtual void DidDetachInterstitialPage() override {
+ void DidDetachInterstitialPage() override {
browser_->UpdateBookmarkBarState(BOOKMARK_BAR_STATE_CHANGE_TAB_STATE);
}

Powered by Google App Engine
This is Rietveld 408576698