Index: chrome/browser/ui/app_list/app_list_view_delegate.cc |
diff --git a/chrome/browser/ui/app_list/app_list_view_delegate.cc b/chrome/browser/ui/app_list/app_list_view_delegate.cc |
index dba22c70885eb3132f03e674ef5c488ce9a0f189..cb3e34880ee8746426ce1b3bb556f371b6f84a46 100644 |
--- a/chrome/browser/ui/app_list/app_list_view_delegate.cc |
+++ b/chrome/browser/ui/app_list/app_list_view_delegate.cc |
@@ -232,3 +232,18 @@ void AppListViewDelegate::Observe( |
const content::NotificationDetails& details) { |
OnProfileChanged(); |
} |
+ |
+void AppListViewDelegate::OnProfileAdded(const base::FilePath& profile_path) { |
+ OnProfileChanged(); |
+} |
+ |
+void AppListViewDelegate::OnProfileWillBeRemoved( |
+ const base::FilePath& profile_path) { |
+ OnProfileChanged(); |
+} |
+ |
+void AppListViewDelegate::OnProfileNameChanged( |
+ const base::FilePath& profile_path, |
+ const string16& old_profile_name) { |
+ OnProfileChanged(); |
+} |