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

Unified Diff: chrome/browser/profiles/profile_shortcut_manager_win.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/profiles/profile_shortcut_manager_win.h
diff --git a/chrome/browser/profiles/profile_shortcut_manager_win.h b/chrome/browser/profiles/profile_shortcut_manager_win.h
index 215178c696df72002e1e56781cfc0d647551cdaf..30e53494226761c8e8a6feff77d6072b385c5e7b 100644
--- a/chrome/browser/profiles/profile_shortcut_manager_win.h
+++ b/chrome/browser/profiles/profile_shortcut_manager_win.h
@@ -54,34 +54,34 @@ class ProfileShortcutManagerWin : public ProfileShortcutManager,
// ProfileShortcutManager implementation:
virtual void CreateOrUpdateProfileIcon(
- const base::FilePath& profile_path) OVERRIDE;
+ const base::FilePath& profile_path) override;
virtual void CreateProfileShortcut(
- const base::FilePath& profile_path) OVERRIDE;
+ const base::FilePath& profile_path) override;
virtual void RemoveProfileShortcuts(
- const base::FilePath& profile_path) OVERRIDE;
+ const base::FilePath& profile_path) override;
virtual void HasProfileShortcuts(
const base::FilePath& profile_path,
- const base::Callback<void(bool)>& callback) OVERRIDE;
+ const base::Callback<void(bool)>& callback) override;
virtual void GetShortcutProperties(const base::FilePath& profile_path,
base::CommandLine* command_line,
base::string16* name,
- base::FilePath* icon_path) OVERRIDE;
+ base::FilePath* icon_path) override;
// ProfileInfoCacheObserver implementation:
- virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE;
+ virtual void OnProfileAdded(const base::FilePath& profile_path) override;
virtual void OnProfileWasRemoved(
const base::FilePath& profile_path,
- const base::string16& profile_name) OVERRIDE;
+ const base::string16& profile_name) override;
virtual void OnProfileNameChanged(
const base::FilePath& profile_path,
- const base::string16& old_profile_name) OVERRIDE;
+ const base::string16& old_profile_name) override;
virtual void OnProfileAvatarChanged(
- const base::FilePath& profile_path) OVERRIDE;
+ const base::FilePath& profile_path) override;
// content::NotificationObserver implementation:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
private:
// Gives the profile path of an alternate profile than |profile_path|.
« no previous file with comments | « chrome/browser/profiles/profile_shortcut_manager_unittest_win.cc ('k') | chrome/browser/profiles/profile_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698