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

Unified Diff: chrome/browser/ui/browser_command_controller.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_command_controller.cc
diff --git a/chrome/browser/ui/browser_command_controller.cc b/chrome/browser/ui/browser_command_controller.cc
index e6c7e5e980610f69db56171787ce81d16669c940..00100212c54cbb516603fd7b60f3023ccf051da8 100644
--- a/chrome/browser/ui/browser_command_controller.cc
+++ b/chrome/browser/ui/browser_command_controller.cc
@@ -850,11 +850,11 @@ class BrowserCommandController::InterstitialObserver
controller_(controller) {
}
- virtual void DidAttachInterstitialPage() override {
+ void DidAttachInterstitialPage() override {
controller_->UpdateCommandsForTabState();
}
- virtual void DidDetachInterstitialPage() override {
+ void DidDetachInterstitialPage() override {
controller_->UpdateCommandsForTabState();
}

Powered by Google App Engine
This is Rietveld 408576698