Index: chrome/browser/ui/webui/options/font_settings_handler.cc |
diff --git a/chrome/browser/ui/webui/options/font_settings_handler.cc b/chrome/browser/ui/webui/options/font_settings_handler.cc |
index 2648ea258b8ec3f20da2494d90c253408611640f..ab6764486011e19fa18f3b4a367cef58e0db60db 100644 |
--- a/chrome/browser/ui/webui/options/font_settings_handler.cc |
+++ b/chrome/browser/ui/webui/options/font_settings_handler.cc |
@@ -114,7 +114,7 @@ void FontSettingsHandler::GetLocalizedValues( |
void FontSettingsHandler::InitializeHandler() { |
registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_LOADED, |
content::NotificationService::AllSources()); |
- registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UNLOADED, |
+ registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED, |
content::NotificationService::AllSources()); |
} |
@@ -179,7 +179,7 @@ void FontSettingsHandler::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); |
NotifyAdvancedFontSettingsAvailability(); |
} |