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 <string> | 5 #include <string> |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "chrome/browser/chromeos/cros/cros_library.h" | 10 #include "chrome/browser/chromeos/cros/cros_library.h" |
11 #include "chrome/browser/chromeos/login/auth_attempt_state.h" | 11 #include "chrome/browser/chromeos/login/auth_attempt_state.h" |
12 #include "chrome/browser/chromeos/login/mock_auth_attempt_state_resolver.h" | 12 #include "chrome/browser/chromeos/login/mock_auth_attempt_state_resolver.h" |
13 #include "chrome/browser/chromeos/login/mock_url_fetchers.h" | 13 #include "chrome/browser/chromeos/login/mock_url_fetchers.h" |
14 #include "chrome/browser/chromeos/login/online_attempt.h" | 14 #include "chrome/browser/chromeos/login/online_attempt.h" |
15 #include "chrome/browser/chromeos/login/test_attempt_state.h" | 15 #include "chrome/browser/chromeos/login/test_attempt_state.h" |
16 #include "chrome/common/net/gaia/gaia_auth_consumer.h" | |
17 #include "chrome/common/net/gaia/mock_url_fetcher_factory.h" | |
18 #include "chrome/test/base/testing_profile.h" | 16 #include "chrome/test/base/testing_profile.h" |
19 #include "content/public/test/test_browser_thread.h" | 17 #include "content/public/test/test_browser_thread.h" |
| 18 #include "google_apis/gaia/gaia_auth_consumer.h" |
| 19 #include "google_apis/gaia/mock_url_fetcher_factory.h" |
20 #include "googleurl/src/gurl.h" | 20 #include "googleurl/src/gurl.h" |
21 #include "testing/gmock/include/gmock/gmock.h" | 21 #include "testing/gmock/include/gmock/gmock.h" |
22 #include "testing/gtest/include/gtest/gtest.h" | 22 #include "testing/gtest/include/gtest/gtest.h" |
23 | 23 |
24 using ::testing::AnyNumber; | 24 using ::testing::AnyNumber; |
25 using ::testing::Invoke; | 25 using ::testing::Invoke; |
26 using ::testing::Return; | 26 using ::testing::Return; |
27 using ::testing::_; | 27 using ::testing::_; |
28 using content::BrowserThread; | 28 using content::BrowserThread; |
29 | 29 |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 attempt_->weak_factory_.GetWeakPtr(), | 248 attempt_->weak_factory_.GetWeakPtr(), |
249 error)); | 249 error)); |
250 | 250 |
251 // Force UI thread to finish tasks so I can verify |state_|. | 251 // Force UI thread to finish tasks so I can verify |state_|. |
252 message_loop_.RunAllPending(); | 252 message_loop_.RunAllPending(); |
253 EXPECT_TRUE(GoogleServiceAuthError::None() == | 253 EXPECT_TRUE(GoogleServiceAuthError::None() == |
254 state_.online_outcome().error()); | 254 state_.online_outcome().error()); |
255 } | 255 } |
256 | 256 |
257 } // namespace chromeos | 257 } // namespace chromeos |
OLD | NEW |