Index: chrome/browser/ui/app_list/app_list_syncable_service.cc |
diff --git a/chrome/browser/ui/app_list/app_list_syncable_service.cc b/chrome/browser/ui/app_list/app_list_syncable_service.cc |
index a5c826c5756504d4041787ca7686d882d3510837..a8525748bb18bafdeb704a6ddc02d1b7692eec76 100644 |
--- a/chrome/browser/ui/app_list/app_list_syncable_service.cc |
+++ b/chrome/browser/ui/app_list/app_list_syncable_service.cc |
@@ -234,7 +234,8 @@ AppListSyncableService::AppListSyncableService( |
} |
// The extensions for this profile have not yet all been loaded. |
- registrar_.Add(this, chrome::NOTIFICATION_EXTENSIONS_READY, |
+ registrar_.Add(this, |
+ extensions::NOTIFICATION_EXTENSIONS_READY_DEPRECATED, |
content::Source<Profile>(profile)); |
} |
@@ -280,7 +281,7 @@ void AppListSyncableService::Observe( |
int type, |
const content::NotificationSource& source, |
const content::NotificationDetails& details) { |
- DCHECK_EQ(chrome::NOTIFICATION_EXTENSIONS_READY, type); |
+ DCHECK_EQ(extensions::NOTIFICATION_EXTENSIONS_READY_DEPRECATED, type); |
DCHECK_EQ(profile_, content::Source<Profile>(source).ptr()); |
registrar_.RemoveAll(); |
BuildModel(); |