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

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

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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 4e6c9e14b3a152a6c246c0c68a9936ddd811ebad..2b733e3f8c109839744d05356f0b945246e9448c 100644
--- a/chrome/browser/ui/browser_command_controller.cc
+++ b/chrome/browser/ui/browser_command_controller.cc
@@ -136,7 +136,7 @@ class SwitchToMetroUIHandler
private:
virtual void SetDefaultWebClientUIState(
- ShellIntegration::DefaultWebClientUIState state) OVERRIDE {
+ ShellIntegration::DefaultWebClientUIState state) override {
switch (state) {
case ShellIntegration::STATE_PROCESSING:
return;
@@ -157,7 +157,7 @@ class SwitchToMetroUIHandler
delete this;
}
- virtual void OnSetAsDefaultConcluded(bool success) OVERRIDE {
+ virtual void OnSetAsDefaultConcluded(bool success) override {
if (!success) {
delete this;
return;
@@ -166,7 +166,7 @@ class SwitchToMetroUIHandler
default_browser_worker_->StartCheckIsDefault();
}
- virtual bool IsInteractiveSetDefaultPermitted() OVERRIDE {
+ virtual bool IsInteractiveSetDefaultPermitted() override {
return true;
}
@@ -845,11 +845,11 @@ class BrowserCommandController::InterstitialObserver
controller_(controller) {
}
- virtual void DidAttachInterstitialPage() OVERRIDE {
+ virtual void DidAttachInterstitialPage() override {
controller_->UpdateCommandsForTabState();
}
- virtual void DidDetachInterstitialPage() OVERRIDE {
+ virtual void DidDetachInterstitialPage() override {
controller_->UpdateCommandsForTabState();
}
« no previous file with comments | « chrome/browser/ui/browser_command_controller.h ('k') | chrome/browser/ui/browser_command_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698