| 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|.
|
|
|