Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Unified Diff: chrome/browser/chromeos/login/login_manager_view.cc

Issue 1256004: In process browser test for login screen. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/login_manager_view.cc
===================================================================
--- chrome/browser/chromeos/login/login_manager_view.cc (revision 42738)
+++ chrome/browser/chromeos/login/login_manager_view.cc (working copy)
@@ -21,10 +21,10 @@
#include "chrome/browser/chromeos/cros/cros_library.h"
#include "chrome/browser/chromeos/cros/network_library.h"
#include "chrome/browser/chromeos/login/authentication_notification_details.h"
+#include "chrome/browser/chromeos/login/login_utils.h"
#include "chrome/browser/chromeos/login/rounded_rect_painter.h"
#include "chrome/browser/chromeos/login/screen_observer.h"
#include "chrome/browser/chromeos/login/user_manager.h"
-#include "chrome/browser/chromeos/login/utils.h"
#include "chrome/common/notification_service.h"
#include "grit/generated_resources.h"
#include "grit/theme_resources.h"
@@ -78,8 +78,7 @@
if (kStubOutLogin)
authenticator_.reset(new StubAuthenticator(this));
else
- authenticator_.reset(login_utils::CreateAuthenticator(this));
-
+ authenticator_.reset(LoginUtils::Get()->CreateAuthenticator(this));
}
LoginManagerView::~LoginManagerView() {
@@ -341,7 +340,7 @@
if (observer_) {
observer_->OnExit(ScreenObserver::LOGIN_SIGN_IN_SELECTED);
}
- login_utils::CompleteLogin(username, cookies);
+ LoginUtils::Get()->CompleteLogin(username, cookies);
}
void LoginManagerView::ShowError(int error_id) {

Powered by Google App Engine
This is Rietveld 408576698