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

Unified Diff: chrome/browser/chromeos/login/login_utils.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
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.h ('k') | chrome/browser/chromeos/login/utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/login_utils.cc
===================================================================
--- chrome/browser/chromeos/login/login_utils.cc (revision 42598)
+++ chrome/browser/chromeos/login/login_utils.cc (working copy)
@@ -2,11 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/chromeos/login/utils.h"
+#include "chrome/browser/chromeos/login/login_utils.h"
#include "base/command_line.h"
#include "base/file_path.h"
#include "base/path_service.h"
+#include "base/scoped_ptr.h"
+#include "base/singleton.h"
#include "chrome/browser/browser_init.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chromeos/cros/login_library.h"
@@ -28,10 +30,44 @@
namespace chromeos {
-namespace login_utils {
+class LoginUtilsImpl : public LoginUtils {
+ public:
+ LoginUtilsImpl() {}
-void CompleteLogin(const std::string& username,
- std::vector<std::string> cookies) {
+ // Invoked after the user has successfully logged in. This launches a browser
+ // and does other bookkeeping after logging in.
+ virtual void CompleteLogin(const std::string& username,
+ std::vector<std::string> cookies);
+
+ // Creates and returns the authenticator to use. The caller owns the returned
+ // Authenticator and must delete it when done.
+ virtual Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer);
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(LoginUtilsImpl);
+};
+
+class LoginUtilsWraper {
+ public:
+ LoginUtilsWraper() : ptr_(new LoginUtilsImpl) {
+ }
+
+ LoginUtils* get() {
+ return ptr_.get();
+ }
+
+ void reset(LoginUtils* ptr) {
+ ptr_.reset(ptr);
+ }
+
+ private:
+ scoped_ptr<LoginUtils> ptr_;
+
+ DISALLOW_COPY_AND_ASSIGN(LoginUtilsWraper);
+};
+
+void LoginUtilsImpl::CompleteLogin(const std::string& username,
+ std::vector<std::string> cookies) {
LOG(INFO) << "LoginManagerView: OnLoginSuccess()";
if (CrosLibrary::Get()->EnsureLoaded())
@@ -70,12 +106,19 @@
&return_code);
}
-Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer) {
+Authenticator* LoginUtilsImpl::CreateAuthenticator(
+ LoginStatusConsumer* consumer) {
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kInChromeAuth))
return new GoogleAuthenticator(consumer);
return new PamGoogleAuthenticator(consumer);
}
-} // namespace login_utils
+LoginUtils* LoginUtils::Get() {
+ return Singleton<LoginUtilsWraper>::get()->get();
+}
+void LoginUtils::Set(LoginUtils* mock) {
+ Singleton<LoginUtilsWraper>::get()->reset(mock);
+}
+
} // namespace chromeos
Property changes on: chrome/browser/chromeos/login/login_utils.cc
___________________________________________________________________
Added: svn:mergeinfo
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.h ('k') | chrome/browser/chromeos/login/utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698