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

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

Issue 3407008: [Chrome OS] Infrastucture for doing offline/online login simultaneously (Closed)
Patch Set: re-upload (again) due to 500s Created 10 years, 3 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/test_attempt_state.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/test_attempt_state.cc
diff --git a/chrome/browser/chromeos/login/test_attempt_state.cc b/chrome/browser/chromeos/login/test_attempt_state.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2f70c37fe9e634263eee6edf32cc7901762c5da2
--- /dev/null
+++ b/chrome/browser/chromeos/login/test_attempt_state.cc
@@ -0,0 +1,43 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// 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/test_attempt_state.h"
+
+#include <string>
+
+#include "chrome/common/net/gaia/gaia_auth_consumer.h"
+#include "cros/chromeos_cryptohome.h"
+
+namespace chromeos {
+
+TestAttemptState::TestAttemptState(const std::string& username,
+ const std::string& password,
+ const std::string& ascii_hash,
+ const std::string& login_token,
+ const std::string& login_captcha)
+ : AuthAttemptState(username,
+ password,
+ ascii_hash,
+ login_token,
+ login_captcha) {
+}
+
+TestAttemptState::~TestAttemptState() {}
+
+void TestAttemptState::PresetOnlineLoginStatus(
+ const GaiaAuthConsumer::ClientLoginResult& credentials,
+ const LoginFailure& outcome) {
+ online_complete_ = true;
+ online_outcome_ = outcome;
+ credentials_ = credentials;
+}
+
+void TestAttemptState::PresetOfflineLoginStatus(bool offline_outcome,
+ int offline_code) {
+ offline_complete_ = true;
+ offline_outcome_ = offline_outcome;
+ offline_code_ = offline_code;
+}
+
+} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/login/test_attempt_state.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698