| Index: chrome/browser/ui/browser_command_controller.h
|
| diff --git a/chrome/browser/ui/browser_command_controller.h b/chrome/browser/ui/browser_command_controller.h
|
| index 8d4eefe7300cb05e4504334389b94d5466060030..f65780bdf46a3622dfcbd5dd64bd121ed23aabfd 100644
|
| --- a/chrome/browser/ui/browser_command_controller.h
|
| +++ b/chrome/browser/ui/browser_command_controller.h
|
| @@ -102,13 +102,14 @@ class BrowserCommandController : public CommandUpdaterDelegate,
|
| const content::NotificationDetails& details) OVERRIDE;
|
|
|
| // Overridden from ProfileInfoCacheObserver:
|
| - virtual void OnProfileAdded(const FilePath& profile_path) OVERRIDE;
|
| - virtual void OnProfileWillBeRemoved(const FilePath& profile_path) OVERRIDE;
|
| - virtual void OnProfileWasRemoved(const FilePath& profile_path,
|
| + virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE;
|
| + virtual void OnProfileWillBeRemoved(
|
| + const base::FilePath& profile_path) OVERRIDE;
|
| + virtual void OnProfileWasRemoved(const base::FilePath& profile_path,
|
| const string16& profile_name) OVERRIDE;
|
| - virtual void OnProfileNameChanged(const FilePath& profile_path,
|
| + virtual void OnProfileNameChanged(const base::FilePath& profile_path,
|
| const string16& old_profile_name) OVERRIDE;
|
| - virtual void OnProfileAvatarChanged(const FilePath& profile_path) OVERRIDE;
|
| + virtual void OnProfileAvatarChanged(const base::FilePath& profile_path) OVERRIDE;
|
|
|
| // Overridden from ProfileSyncServiceObserver:
|
| virtual void OnStateChanged() OVERRIDE;
|
|
|