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 #import "chrome/browser/ui/cocoa/one_click_signin_bubble_controller.h" | 5 #import "chrome/browser/ui/cocoa/one_click_signin_bubble_controller.h" |
6 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #import "base/mac/scoped_nsobject.h" | 11 #import "base/mac/scoped_nsobject.h" |
| 12 #include "base/macros.h" |
12 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
13 #import "chrome/browser/ui/cocoa/browser_window_cocoa.h" | 14 #import "chrome/browser/ui/cocoa/browser_window_cocoa.h" |
14 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" | 15 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" |
15 #import "chrome/browser/ui/cocoa/one_click_signin_view_controller.h" | 16 #import "chrome/browser/ui/cocoa/one_click_signin_view_controller.h" |
16 #include "chrome/browser/ui/sync/one_click_signin_sync_starter.h" | 17 #include "chrome/browser/ui/sync/one_click_signin_sync_starter.h" |
17 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
18 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
19 #import "testing/gtest_mac.h" | 20 #import "testing/gtest_mac.h" |
20 | 21 |
21 namespace { | 22 namespace { |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 } | 79 } |
79 | 80 |
80 // Test that the bubble does not sync if the bubble is closed. | 81 // Test that the bubble does not sync if the bubble is closed. |
81 TEST_F(OneClickSigninBubbleControllerTest, Close) { | 82 TEST_F(OneClickSigninBubbleControllerTest, Close) { |
82 EXPECT_CALL(*this, OnStartSync( | 83 EXPECT_CALL(*this, OnStartSync( |
83 OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS)).Times(0); | 84 OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS)).Times(0); |
84 [controller_ close]; | 85 [controller_ close]; |
85 } | 86 } |
86 | 87 |
87 } // namespace | 88 } // namespace |
OLD | NEW |