| Index: chrome/browser/chromeos/login/parallel_authenticator.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/parallel_authenticator.cc (revision 91971)
|
| +++ chrome/browser/chromeos/login/parallel_authenticator.cc (working copy)
|
| @@ -23,6 +23,7 @@
|
| #include "chrome/browser/chromeos/login/user_manager.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/profiles/profile_manager.h"
|
| +#include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/common/chrome_paths.h"
|
| #include "chrome/common/net/gaia/gaia_auth_fetcher.h"
|
| #include "chrome/common/net/gaia/gaia_constants.h"
|
| @@ -130,7 +131,7 @@
|
| // Send notification of success
|
| AuthenticationNotificationDetails details(true);
|
| NotificationService::current()->Notify(
|
| - NotificationType::LOGIN_AUTHENTICATION,
|
| + chrome::NOTIFICATION_LOGIN_AUTHENTICATION,
|
| NotificationService::AllSources(),
|
| Details<AuthenticationNotificationDetails>(&details));
|
| {
|
| @@ -148,7 +149,7 @@
|
| // Send notification of success
|
| AuthenticationNotificationDetails details(true);
|
| NotificationService::current()->Notify(
|
| - NotificationType::LOGIN_AUTHENTICATION,
|
| + chrome::NOTIFICATION_LOGIN_AUTHENTICATION,
|
| NotificationService::AllSources(),
|
| Details<AuthenticationNotificationDetails>(&details));
|
| consumer_->OnOffTheRecordLoginSuccess();
|
| @@ -202,7 +203,7 @@
|
| // Send notification of failure
|
| AuthenticationNotificationDetails details(false);
|
| NotificationService::current()->Notify(
|
| - NotificationType::LOGIN_AUTHENTICATION,
|
| + chrome::NOTIFICATION_LOGIN_AUTHENTICATION,
|
| NotificationService::AllSources(),
|
| Details<AuthenticationNotificationDetails>(&details));
|
| LOG(WARNING) << "Login failed: " << error.GetErrorString();
|
|
|