diff options
Diffstat (limited to 'chrome/browser/profiles/profile_shortcut_manager_win.h')
-rw-r--r-- | chrome/browser/profiles/profile_shortcut_manager_win.h | 45 |
1 files changed, 19 insertions, 26 deletions
diff --git a/chrome/browser/profiles/profile_shortcut_manager_win.h b/chrome/browser/profiles/profile_shortcut_manager_win.h index 30e5349..7645b8d 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|. |