| Index: apps/app_window_geometry_cache.cc
|
| diff --git a/apps/app_window_geometry_cache.cc b/apps/app_window_geometry_cache.cc
|
| index 8b6cbba73b0dbe8e70ab79b68e04ab24807d5b2d..e12794b23ac773299def7edb44769879078bd845 100644
|
| --- a/apps/app_window_geometry_cache.cc
|
| +++ b/apps/app_window_geometry_cache.cc
|
| @@ -34,7 +34,7 @@ AppWindowGeometryCache::AppWindowGeometryCache(
|
| : prefs_(prefs),
|
| sync_delay_(base::TimeDelta::FromMilliseconds(kSyncTimeoutMilliseconds)) {
|
| registrar_.Add(this,
|
| - chrome::NOTIFICATION_EXTENSION_LOADED,
|
| + chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
|
| content::Source<Profile>(profile));
|
| registrar_.Add(this,
|
| chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| @@ -198,7 +198,7 @@ void AppWindowGeometryCache::Observe(
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) {
|
| switch (type) {
|
| - case chrome::NOTIFICATION_EXTENSION_LOADED: {
|
| + case chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED: {
|
| std::string extension_id =
|
| content::Details<const extensions::Extension>(details).ptr()->id();
|
| LoadGeometryFromStorage(extension_id);
|
|
|