| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/signin/signin_manager.h" | 5 #include "chrome/browser/signin/signin_manager.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/stringprintf.h" | 10 #include "base/stringprintf.h" |
| 11 #include "chrome/browser/password_manager/encryptor.h" | 11 #include "chrome/browser/password_manager/encryptor.h" |
| 12 #include "chrome/browser/prefs/pref_service.h" | 12 #include "chrome/browser/prefs/pref_service.h" |
| 13 #include "chrome/browser/signin/token_service.h" | 13 #include "chrome/browser/signin/token_service.h" |
| 14 #include "chrome/browser/signin/token_service_unittest.h" | 14 #include "chrome/browser/signin/token_service_unittest.h" |
| 15 #include "chrome/browser/webdata/web_data_service.h" | 15 #include "chrome/browser/webdata/web_data_service.h" |
| 16 #include "chrome/common/chrome_notification_types.h" | 16 #include "chrome/common/chrome_notification_types.h" |
| 17 #include "chrome/common/net/gaia/gaia_constants.h" | 17 #include "chrome/common/net/gaia/gaia_constants.h" |
| 18 #include "chrome/common/net/gaia/gaia_urls.h" | 18 #include "chrome/common/net/gaia/gaia_urls.h" |
| 19 #include "chrome/common/pref_names.h" | 19 #include "chrome/common/pref_names.h" |
| 20 #include "chrome/test/base/testing_profile.h" | 20 #include "chrome/test/base/testing_profile.h" |
| 21 #include "content/test/test_url_fetcher_factory.h" | 21 #include "content/public/test/test_url_fetcher_factory.h" |
| 22 #include "net/url_request/url_request.h" | 22 #include "net/url_request/url_request.h" |
| 23 #include "net/url_request/url_request_status.h" | 23 #include "net/url_request/url_request_status.h" |
| 24 | 24 |
| 25 #include "testing/gmock/include/gmock/gmock.h" | 25 #include "testing/gmock/include/gmock/gmock.h" |
| 26 #include "testing/gtest/include/gtest/gtest.h" | 26 #include "testing/gtest/include/gtest/gtest.h" |
| 27 | 27 |
| 28 namespace { | 28 namespace { |
| 29 | 29 |
| 30 const char kGetTokenPairValidResponse[] = | 30 const char kGetTokenPairValidResponse[] = |
| 31 "{" | 31 "{" |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 | 446 |
| 447 manager_->ProvideOAuthChallengeResponse( | 447 manager_->ProvideOAuthChallengeResponse( |
| 448 GoogleServiceAuthError::CAPTCHA_REQUIRED, "token", "solution"); | 448 GoogleServiceAuthError::CAPTCHA_REQUIRED, "token", "solution"); |
| 449 | 449 |
| 450 SimulateProvideOAuthChallengeResponseValid(); | 450 SimulateProvideOAuthChallengeResponseValid(); |
| 451 EXPECT_EQ("user@gmail.com", manager_->GetAuthenticatedUsername()); | 451 EXPECT_EQ("user@gmail.com", manager_->GetAuthenticatedUsername()); |
| 452 | 452 |
| 453 EXPECT_EQ(1U, google_login_success_.size()); | 453 EXPECT_EQ(1U, google_login_success_.size()); |
| 454 EXPECT_EQ(1U, google_login_failure_.size()); | 454 EXPECT_EQ(1U, google_login_failure_.size()); |
| 455 } | 455 } |
| OLD | NEW |