| Index: chrome/browser/views/browser_actions_container.cc
|
| diff --git a/chrome/browser/views/browser_actions_container.cc b/chrome/browser/views/browser_actions_container.cc
|
| index 179677c10220979fac75230a6f275e2b7a11999f..f6036dd8ff5f8222f824e40954906eea4de66f47 100644
|
| --- a/chrome/browser/views/browser_actions_container.cc
|
| +++ b/chrome/browser/views/browser_actions_container.cc
|
| @@ -229,11 +229,11 @@ BrowserActionsContainer::BrowserActionsContainer(
|
| return;
|
|
|
| registrar_.Add(this, NotificationType::EXTENSION_LOADED,
|
| - Source<ExtensionsService>(extension_service));
|
| + Source<Profile>(profile_));
|
| registrar_.Add(this, NotificationType::EXTENSION_UNLOADED,
|
| - Source<ExtensionsService>(extension_service));
|
| + Source<Profile>(profile_));
|
| registrar_.Add(this, NotificationType::EXTENSION_UNLOADED_DISABLED,
|
| - Source<ExtensionsService>(extension_service));
|
| + Source<Profile>(profile_));
|
| registrar_.Add(this, NotificationType::EXTENSION_HOST_VIEW_SHOULD_CLOSE,
|
| Source<Profile>(profile_));
|
|
|
|
|