| Index: chrome/browser/sync/sync_global_error_unittest.cc
|
| diff --git a/chrome/browser/sync/sync_global_error_unittest.cc b/chrome/browser/sync/sync_global_error_unittest.cc
|
| index 68f6cc4c5066d69171d78d59eb0095f0f641a184..87c7c4db2c4e9330ad5d36aedd982dbef70a04c2 100644
|
| --- a/chrome/browser/sync/sync_global_error_unittest.cc
|
| +++ b/chrome/browser/sync/sync_global_error_unittest.cc
|
| @@ -39,7 +39,7 @@ class BrowserMock: public Browser {
|
| class LoginUIServiceMock: public LoginUIService {
|
| public:
|
| explicit LoginUIServiceMock(Profile* profile) : LoginUIService(profile) {}
|
| - MOCK_METHOD1(ShowLoginUI, void(bool));
|
| + MOCK_METHOD0(ShowLoginUI, void());
|
| };
|
|
|
| ProfileKeyedService* BuildMockLoginUIService(Profile* profile) {
|
| @@ -110,9 +110,9 @@ void VerifySyncGlobalErrorResult(NiceMock<ProfileSyncServiceMock>* service,
|
| #else
|
| // Test message handler.
|
| if (is_error) {
|
| - EXPECT_CALL(*login_ui_service, ShowLoginUI(false));
|
| + EXPECT_CALL(*login_ui_service, ShowLoginUI());
|
| error->ExecuteMenuItem(browser);
|
| - EXPECT_CALL(*login_ui_service, ShowLoginUI(false));
|
| + EXPECT_CALL(*login_ui_service, ShowLoginUI());
|
| error->BubbleViewAcceptButtonPressed(browser);
|
| error->BubbleViewDidClose(browser);
|
| }
|
|
|