Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: chrome/browser/ui/cocoa/bookmarks/bookmark_sync_promo_controller_unittest.mm

Issue 816403003: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/bookmarks/bookmark_sync_promo_controller.h" 5 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_sync_promo_controller.h"
6 6
7 #import <Cocoa/Cocoa.h> 7 #import <Cocoa/Cocoa.h>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/mac/scoped_nsobject.h" 11 #include "base/mac/scoped_nsobject.h"
12 #include "chrome/browser/extensions/extension_service.h" 12 #include "chrome/browser/extensions/extension_service.h"
13 #include "chrome/browser/extensions/test_extension_system.h" 13 #include "chrome/browser/extensions/test_extension_system.h"
14 #include "chrome/browser/ui/browser.h" 14 #include "chrome/browser/ui/browser.h"
15 #include "chrome/browser/ui/tabs/tab_strip_model.h" 15 #include "chrome/browser/ui/tabs/tab_strip_model.h"
16 #include "chrome/test/base/browser_with_test_window_test.h" 16 #include "chrome/test/base/browser_with_test_window_test.h"
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
18 18
19 namespace { 19 namespace {
20 20
21 class BookmarkSyncPromoControllerTest : public BrowserWithTestWindowTest { 21 class BookmarkSyncPromoControllerTest : public BrowserWithTestWindowTest {
22 public: 22 public:
23 virtual void SetUp() { 23 virtual void SetUp() {
24 BrowserWithTestWindowTest::SetUp(); 24 BrowserWithTestWindowTest::SetUp();
25 ASSERT_TRUE(profile()); 25 ASSERT_TRUE(profile());
26 // Adds TestExtensionSystem, since signin uses the gaia auth extension. 26 // Adds TestExtensionSystem, since signin uses the gaia auth extension.
27 static_cast<extensions::TestExtensionSystem*>( 27 static_cast<extensions::TestExtensionSystem*>(
28 extensions::ExtensionSystem::Get(profile()))->CreateExtensionService( 28 extensions::ExtensionSystem::Get(profile()))
29 CommandLine::ForCurrentProcess(), base::FilePath(), false); 29 ->CreateExtensionService(base::CommandLine::ForCurrentProcess(),
30 base::FilePath(), false);
30 } 31 }
31 }; 32 };
32 33
33 TEST_F(BookmarkSyncPromoControllerTest, SignInLink) { 34 TEST_F(BookmarkSyncPromoControllerTest, SignInLink) {
34 int starting_tab_count = browser()->tab_strip_model()->count(); 35 int starting_tab_count = browser()->tab_strip_model()->count();
35 36
36 base::scoped_nsobject<BookmarkSyncPromoController> syncPromo( 37 base::scoped_nsobject<BookmarkSyncPromoController> syncPromo(
37 [[BookmarkSyncPromoController alloc] initWithBrowser:browser()]); 38 [[BookmarkSyncPromoController alloc] initWithBrowser:browser()]);
38 39
39 // Simulate clicking the "Sign in" link. 40 // Simulate clicking the "Sign in" link.
40 [syncPromo textView:nil clickedOnLink:nil atIndex:0u]; 41 [syncPromo textView:nil clickedOnLink:nil atIndex:0u];
41 42
42 // A new tab should have been opened. 43 // A new tab should have been opened.
43 int tab_count = browser()->tab_strip_model()->count(); 44 int tab_count = browser()->tab_strip_model()->count();
44 EXPECT_EQ(starting_tab_count + 1, tab_count); 45 EXPECT_EQ(starting_tab_count + 1, tab_count);
45 } 46 }
46 47
47 } // namespace 48 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698