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/sync/sync_global_error.h" | 5 #include "chrome/browser/sync/sync_global_error.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 | 8 |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
11 #include "chrome/browser/chrome_notification_types.h" | 11 #include "chrome/browser/chrome_notification_types.h" |
12 #include "chrome/browser/sync/profile_sync_test_util.h" | 12 #include "chrome/browser/sync/profile_sync_test_util.h" |
13 #include "chrome/browser/sync/sync_global_error_factory.h" | 13 #include "chrome/browser/sync/sync_global_error_factory.h" |
14 #include "chrome/browser/ui/browser.h" | 14 #include "chrome/browser/ui/browser.h" |
15 #include "chrome/browser/ui/global_error/global_error_service_factory.h" | 15 #include "chrome/browser/ui/global_error/global_error_service_factory.h" |
16 #include "chrome/browser/ui/webui/signin/login_ui_service.h" | 16 #include "chrome/browser/ui/webui/signin/login_ui_service.h" |
17 #include "chrome/browser/ui/webui/signin/login_ui_service_factory.h" | 17 #include "chrome/browser/ui/webui/signin/login_ui_service_factory.h" |
18 #include "chrome/test/base/browser_with_test_window_test.h" | 18 #include "chrome/test/base/browser_with_test_window_test.h" |
19 #include "chrome/test/base/testing_profile.h" | 19 #include "chrome/test/base/testing_profile.h" |
20 #include "components/sync_driver/sync_error_controller.h" | 20 #include "components/sync/driver/sync_error_controller.h" |
21 #include "content/public/browser/notification_observer.h" | 21 #include "content/public/browser/notification_observer.h" |
22 #include "content/public/browser/notification_registrar.h" | 22 #include "content/public/browser/notification_registrar.h" |
23 #include "content/public/browser/notification_source.h" | 23 #include "content/public/browser/notification_source.h" |
24 #include "testing/gmock/include/gmock/gmock.h" | 24 #include "testing/gmock/include/gmock/gmock.h" |
25 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" |
26 | 26 |
27 using ::testing::NiceMock; | 27 using ::testing::NiceMock; |
28 using ::testing::Return; | 28 using ::testing::Return; |
29 using ::testing::ReturnRef; | 29 using ::testing::ReturnRef; |
30 using ::testing::_; | 30 using ::testing::_; |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 .WillRepeatedly(Return(true)); | 165 .WillRepeatedly(Return(true)); |
166 EXPECT_CALL(service, IsPassphraseRequiredForDecryption()) | 166 EXPECT_CALL(service, IsPassphraseRequiredForDecryption()) |
167 .WillRepeatedly(Return(true)); | 167 .WillRepeatedly(Return(true)); |
168 VerifySyncGlobalErrorResult( | 168 VerifySyncGlobalErrorResult( |
169 &service, login_ui_service, browser(), &error, &global_error, | 169 &service, login_ui_service, browser(), &error, &global_error, |
170 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS, | 170 GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS, |
171 false /* not signed in */, false /* no error */); | 171 false /* not signed in */, false /* no error */); |
172 | 172 |
173 global_error.Shutdown(); | 173 global_error.Shutdown(); |
174 } | 174 } |
OLD | NEW |