| Index: chrome/browser/ui/webui/policy_ui.cc
|
| diff --git a/chrome/browser/ui/webui/policy_ui.cc b/chrome/browser/ui/webui/policy_ui.cc
|
| index c2a098b975558e9e8a7be08a4d716ce54a6d0f1f..69ddc5777743f94780f45442b4f66385f76b67e0 100644
|
| --- a/chrome/browser/ui/webui/policy_ui.cc
|
| +++ b/chrome/browser/ui/webui/policy_ui.cc
|
| @@ -580,7 +580,7 @@ void PolicyUIHandler::RegisterMessages() {
|
| chrome::NOTIFICATION_EXTENSION_LOADED,
|
| content::NotificationService::AllSources());
|
| registrar_.Add(this,
|
| - chrome::NOTIFICATION_EXTENSION_UNLOADED,
|
| + chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| content::NotificationService::AllSources());
|
|
|
| web_ui()->RegisterMessageCallback(
|
| @@ -596,7 +596,7 @@ void PolicyUIHandler::Observe(int type,
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) {
|
| DCHECK(type == chrome::NOTIFICATION_EXTENSION_LOADED ||
|
| - type == chrome::NOTIFICATION_EXTENSION_UNLOADED);
|
| + type == chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED);
|
| SendPolicyNames();
|
| SendPolicyValues();
|
| }
|
|
|