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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_ 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_ 6 #define CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "chrome/browser/profiles/profile_shortcut_manager.h" 9 #include "chrome/browser/profiles/profile_shortcut_manager.h"
10 #include "content/public/browser/notification_observer.h" 10 #include "content/public/browser/notification_observer.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 enum NonProfileShortcutAction { 47 enum NonProfileShortcutAction {
48 IGNORE_NON_PROFILE_SHORTCUTS, 48 IGNORE_NON_PROFILE_SHORTCUTS,
49 UPDATE_NON_PROFILE_SHORTCUTS, 49 UPDATE_NON_PROFILE_SHORTCUTS,
50 }; 50 };
51 51
52 explicit ProfileShortcutManagerWin(ProfileManager* manager); 52 explicit ProfileShortcutManagerWin(ProfileManager* manager);
53 virtual ~ProfileShortcutManagerWin(); 53 virtual ~ProfileShortcutManagerWin();
54 54
55 // ProfileShortcutManager implementation: 55 // ProfileShortcutManager implementation:
56 virtual void CreateOrUpdateProfileIcon( 56 virtual void CreateOrUpdateProfileIcon(
57 const base::FilePath& profile_path) OVERRIDE; 57 const base::FilePath& profile_path) override;
58 virtual void CreateProfileShortcut( 58 virtual void CreateProfileShortcut(
59 const base::FilePath& profile_path) OVERRIDE; 59 const base::FilePath& profile_path) override;
60 virtual void RemoveProfileShortcuts( 60 virtual void RemoveProfileShortcuts(
61 const base::FilePath& profile_path) OVERRIDE; 61 const base::FilePath& profile_path) override;
62 virtual void HasProfileShortcuts( 62 virtual void HasProfileShortcuts(
63 const base::FilePath& profile_path, 63 const base::FilePath& profile_path,
64 const base::Callback<void(bool)>& callback) OVERRIDE; 64 const base::Callback<void(bool)>& callback) override;
65 virtual void GetShortcutProperties(const base::FilePath& profile_path, 65 virtual void GetShortcutProperties(const base::FilePath& profile_path,
66 base::CommandLine* command_line, 66 base::CommandLine* command_line,
67 base::string16* name, 67 base::string16* name,
68 base::FilePath* icon_path) OVERRIDE; 68 base::FilePath* icon_path) override;
69 69
70 // ProfileInfoCacheObserver implementation: 70 // ProfileInfoCacheObserver implementation:
71 virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE; 71 virtual void OnProfileAdded(const base::FilePath& profile_path) override;
72 virtual void OnProfileWasRemoved( 72 virtual void OnProfileWasRemoved(
73 const base::FilePath& profile_path, 73 const base::FilePath& profile_path,
74 const base::string16& profile_name) OVERRIDE; 74 const base::string16& profile_name) override;
75 virtual void OnProfileNameChanged( 75 virtual void OnProfileNameChanged(
76 const base::FilePath& profile_path, 76 const base::FilePath& profile_path,
77 const base::string16& old_profile_name) OVERRIDE; 77 const base::string16& old_profile_name) override;
78 virtual void OnProfileAvatarChanged( 78 virtual void OnProfileAvatarChanged(
79 const base::FilePath& profile_path) OVERRIDE; 79 const base::FilePath& profile_path) override;
80 80
81 // content::NotificationObserver implementation: 81 // content::NotificationObserver implementation:
82 virtual void Observe(int type, 82 virtual void Observe(int type,
83 const content::NotificationSource& source, 83 const content::NotificationSource& source,
84 const content::NotificationDetails& details) OVERRIDE; 84 const content::NotificationDetails& details) override;
85 85
86 private: 86 private:
87 // Gives the profile path of an alternate profile than |profile_path|. 87 // Gives the profile path of an alternate profile than |profile_path|.
88 // Must only be called when the number profiles is 2. 88 // Must only be called when the number profiles is 2.
89 base::FilePath GetOtherProfilePath(const base::FilePath& profile_path); 89 base::FilePath GetOtherProfilePath(const base::FilePath& profile_path);
90 90
91 // Creates or updates shortcuts for the profile at |profile_path| according 91 // Creates or updates shortcuts for the profile at |profile_path| according
92 // to the specified |create_mode| and |action|. This will always involve 92 // to the specified |create_mode| and |action|. This will always involve
93 // creating or updating the icon file for this profile. 93 // creating or updating the icon file for this profile.
94 void CreateOrUpdateShortcutsForProfileAtPath( 94 void CreateOrUpdateShortcutsForProfileAtPath(
95 const base::FilePath& profile_path, 95 const base::FilePath& profile_path,
96 CreateOrUpdateMode create_mode, 96 CreateOrUpdateMode create_mode,
97 NonProfileShortcutAction action); 97 NonProfileShortcutAction action);
98 98
99 ProfileManager* profile_manager_; 99 ProfileManager* profile_manager_;
100 100
101 content::NotificationRegistrar registrar_; 101 content::NotificationRegistrar registrar_;
102 102
103 DISALLOW_COPY_AND_ASSIGN(ProfileShortcutManagerWin); 103 DISALLOW_COPY_AND_ASSIGN(ProfileShortcutManagerWin);
104 }; 104 };
105 105
106 #endif // CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_ 106 #endif // CHROME_BROWSER_PROFILES_PROFILE_SHORTCUT_MANAGER_WIN_H_
OLDNEW
« 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