| Index: chrome/browser/ui/webui/ntp/ntp_login_handler.cc
|
| ===================================================================
|
| --- chrome/browser/ui/webui/ntp/ntp_login_handler.cc (revision 91771)
|
| +++ chrome/browser/ui/webui/ntp/ntp_login_handler.cc (working copy)
|
| @@ -12,6 +12,7 @@
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/sync/profile_sync_service.h"
|
| #include "chrome/browser/sync/sync_setup_flow.h"
|
| +#include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "content/common/notification_details.h"
|
|
|
| @@ -36,7 +37,7 @@
|
| void NTPLoginHandler::Observe(NotificationType type,
|
| const NotificationSource& source,
|
| const NotificationDetails& details) {
|
| - DCHECK(type == NotificationType::PREF_CHANGED);
|
| + DCHECK(type == chrome::PREF_CHANGED);
|
| std::string* name = Details<std::string>(details).ptr();
|
| if (prefs::kGoogleServicesUsername == *name)
|
| UpdateLogin();
|
|
|