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

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

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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 30e53494226761c8e8a6feff77d6072b385c5e7b..7645b8d425c6d5b42edca5ef0bb9ef660ee80248 100644
--- a/chrome/browser/profiles/profile_shortcut_manager_win.h
+++ b/chrome/browser/profiles/profile_shortcut_manager_win.h
@@ -50,38 +50,31 @@ class ProfileShortcutManagerWin : public ProfileShortcutManager,
};
explicit ProfileShortcutManagerWin(ProfileManager* manager);
- virtual ~ProfileShortcutManagerWin();
+ ~ProfileShortcutManagerWin() override;
// ProfileShortcutManager implementation:
- virtual void CreateOrUpdateProfileIcon(
- const base::FilePath& profile_path) override;
- virtual void CreateProfileShortcut(
- const base::FilePath& profile_path) override;
- virtual void RemoveProfileShortcuts(
- const base::FilePath& profile_path) override;
- virtual void HasProfileShortcuts(
- const base::FilePath& profile_path,
- 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;
+ void CreateOrUpdateProfileIcon(const base::FilePath& profile_path) override;
+ void CreateProfileShortcut(const base::FilePath& profile_path) override;
+ void RemoveProfileShortcuts(const base::FilePath& profile_path) override;
+ void HasProfileShortcuts(const base::FilePath& profile_path,
+ const base::Callback<void(bool)>& callback) override;
+ void GetShortcutProperties(const base::FilePath& profile_path,
+ base::CommandLine* command_line,
+ base::string16* name,
+ base::FilePath* icon_path) override;
// ProfileInfoCacheObserver implementation:
- virtual void OnProfileAdded(const base::FilePath& profile_path) override;
- virtual void OnProfileWasRemoved(
- const base::FilePath& profile_path,
- const base::string16& profile_name) override;
- virtual void OnProfileNameChanged(
- const base::FilePath& profile_path,
- const base::string16& old_profile_name) override;
- virtual void OnProfileAvatarChanged(
- const base::FilePath& profile_path) override;
+ void OnProfileAdded(const base::FilePath& profile_path) override;
+ void OnProfileWasRemoved(const base::FilePath& profile_path,
+ const base::string16& profile_name) override;
+ void OnProfileNameChanged(const base::FilePath& profile_path,
+ const base::string16& old_profile_name) override;
+ void OnProfileAvatarChanged(const base::FilePath& profile_path) override;
// content::NotificationObserver implementation:
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
private:
// Gives the profile path of an alternate profile than |profile_path|.

Powered by Google App Engine
This is Rietveld 408576698