Index: chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.cc |
=================================================================== |
--- chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.cc (revision 91968) |
+++ chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.cc (working copy) |
@@ -58,13 +58,13 @@ |
::CoreOptionsHandler::StopObservingPref(path); |
} |
-void CoreChromeOSOptionsHandler::Observe(NotificationType type, |
+void CoreChromeOSOptionsHandler::Observe(int type, |
const NotificationSource& source, |
const NotificationDetails& details) { |
// Ignore the notification if this instance had caused it. |
if (handling_change_) |
return; |
- if (type == NotificationType::SYSTEM_SETTING_CHANGED) { |
+ if (type == chrome::SYSTEM_SETTING_CHANGED) { |
NotifySettingsChanged(Details<std::string>(details).ptr()); |
return; |
} |