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

Unified Diff: chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm

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/cocoa/profiles/profile_chooser_controller.mm
diff --git a/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm b/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm
index 3392671c28a4526eed0be82f8ae8ae505b60c319..621a6e705f09b390bb4a6a95a83b5069f55adc39 100644
--- a/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm
+++ b/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm
@@ -288,7 +288,7 @@ class ActiveProfileObserverBridge : public AvatarMenuObserver,
}
// OAuth2TokenService::Observer:
- virtual void OnRefreshTokenAvailable(const std::string& account_id) OVERRIDE {
+ virtual void OnRefreshTokenAvailable(const std::string& account_id) override {
// Tokens can only be added by adding an account through the inline flow,
// which is started from the account management view. Refresh it to show the
// update.
@@ -303,7 +303,7 @@ class ActiveProfileObserverBridge : public AvatarMenuObserver,
}
}
- virtual void OnRefreshTokenRevoked(const std::string& account_id) OVERRIDE {
+ virtual void OnRefreshTokenRevoked(const std::string& account_id) override {
// Tokens can only be removed from the account management view. Refresh it
// to show the update.
if ([controller_ viewMode] == profiles::BUBBLE_VIEW_MODE_ACCOUNT_MANAGEMENT)
@@ -312,7 +312,7 @@ class ActiveProfileObserverBridge : public AvatarMenuObserver,
}
// AvatarMenuObserver:
- virtual void OnAvatarMenuChanged(AvatarMenu* avatar_menu) OVERRIDE {
+ virtual void OnAvatarMenuChanged(AvatarMenu* avatar_menu) override {
profiles::BubbleViewMode viewMode = [controller_ viewMode];
if (viewMode == profiles::BUBBLE_VIEW_MODE_PROFILE_CHOOSER ||
viewMode == profiles::BUBBLE_VIEW_MODE_ACCOUNT_MANAGEMENT) {
@@ -324,7 +324,7 @@ class ActiveProfileObserverBridge : public AvatarMenuObserver,
virtual void Observe(
int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE {
+ const content::NotificationDetails& details) override {
DCHECK_EQ(chrome::NOTIFICATION_BROWSER_CLOSING, type);
if (browser_ == content::Source<Browser>(source).ptr()) {
RemoveTokenServiceObserver();

Powered by Google App Engine
This is Rietveld 408576698