| 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 <set> | 5 #include <set> |
| 6 #include "base/basictypes.h" | 6 #include "base/basictypes.h" |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/browser/signin/fake_auth_status_provider.h" | |
| 10 #include "chrome/browser/signin/fake_signin_manager.h" | 9 #include "chrome/browser/signin/fake_signin_manager.h" |
| 11 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" | 10 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" |
| 12 #include "chrome/browser/signin/signin_manager.h" | 11 #include "chrome/browser/signin/signin_manager.h" |
| 13 #include "chrome/browser/sync/profile_sync_service_mock.h" | 12 #include "chrome/browser/sync/profile_sync_service_mock.h" |
| 14 #include "chrome/browser/sync/sync_ui_util.h" | 13 #include "chrome/browser/sync/sync_ui_util.h" |
| 14 #include "components/signin/core/browser/fake_auth_status_provider.h" |
| 15 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 15 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
| 16 #include "content/public/test/test_browser_thread.h" | 16 #include "content/public/test/test_browser_thread.h" |
| 17 #include "content/public/test/test_browser_thread_bundle.h" | 17 #include "content/public/test/test_browser_thread_bundle.h" |
| 18 #include "grit/generated_resources.h" | 18 #include "grit/generated_resources.h" |
| 19 #include "testing/gmock/include/gmock/gmock-actions.h" | 19 #include "testing/gmock/include/gmock/gmock-actions.h" |
| 20 #include "testing/gmock/include/gmock/gmock.h" | 20 #include "testing/gmock/include/gmock/gmock.h" |
| 21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
| 22 #include "ui/base/l10n/l10n_util.h" | 22 #include "ui/base/l10n/l10n_util.h" |
| 23 | 23 |
| 24 using ::testing::AtMost; | 24 using ::testing::AtMost; |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 EXPECT_FALSE(status_label.empty()); | 392 EXPECT_FALSE(status_label.empty()); |
| 393 EXPECT_EQ(status_label.find(base::ASCIIToUTF16("href")), | 393 EXPECT_EQ(status_label.find(base::ASCIIToUTF16("href")), |
| 394 base::string16::npos); | 394 base::string16::npos); |
| 395 testing::Mock::VerifyAndClearExpectations(&service); | 395 testing::Mock::VerifyAndClearExpectations(&service); |
| 396 testing::Mock::VerifyAndClearExpectations(&signin); | 396 testing::Mock::VerifyAndClearExpectations(&signin); |
| 397 EXPECT_CALL(service, GetAuthError()).WillRepeatedly(ReturnRef(error)); | 397 EXPECT_CALL(service, GetAuthError()).WillRepeatedly(ReturnRef(error)); |
| 398 provider.reset(); | 398 provider.reset(); |
| 399 signin.Shutdown(); | 399 signin.Shutdown(); |
| 400 } | 400 } |
| 401 } | 401 } |
| OLD | NEW |