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

Side by Side Diff: chrome/browser/ui/toolbar/recent_tabs_sub_menu_model_unittest.cc

Issue 2345843003: [Sync] Merge //components/browser_sync into one directory. (Closed)
Patch Set: Address comment + rebase. Created 4 years, 3 months 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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/ui/toolbar/recent_tabs_sub_menu_model.h" 5 #include "chrome/browser/ui/toolbar/recent_tabs_sub_menu_model.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 10 matching lines...) Expand all
21 #include "chrome/browser/sync/profile_sync_test_util.h" 21 #include "chrome/browser/sync/profile_sync_test_util.h"
22 #include "chrome/browser/ui/browser.h" 22 #include "chrome/browser/ui/browser.h"
23 #include "chrome/browser/ui/browser_tabstrip.h" 23 #include "chrome/browser/ui/browser_tabstrip.h"
24 #include "chrome/browser/ui/sync/browser_synced_window_delegates_getter.h" 24 #include "chrome/browser/ui/sync/browser_synced_window_delegates_getter.h"
25 #include "chrome/browser/ui/tabs/tab_strip_model.h" 25 #include "chrome/browser/ui/tabs/tab_strip_model.h"
26 #include "chrome/browser/ui/toolbar/recent_tabs_builder_test_helper.h" 26 #include "chrome/browser/ui/toolbar/recent_tabs_builder_test_helper.h"
27 #include "chrome/common/chrome_switches.h" 27 #include "chrome/common/chrome_switches.h"
28 #include "chrome/test/base/browser_with_test_window_test.h" 28 #include "chrome/test/base/browser_with_test_window_test.h"
29 #include "chrome/test/base/menu_model_test.h" 29 #include "chrome/test/base/menu_model_test.h"
30 #include "chrome/test/base/testing_profile.h" 30 #include "chrome/test/base/testing_profile.h"
31 #include "components/browser_sync/browser/profile_sync_service_mock.h" 31 #include "components/browser_sync/profile_sync_service_mock.h"
32 #include "components/sessions/core/persistent_tab_restore_service.h" 32 #include "components/sessions/core/persistent_tab_restore_service.h"
33 #include "components/sessions/core/serialized_navigation_entry_test_helper.h" 33 #include "components/sessions/core/serialized_navigation_entry_test_helper.h"
34 #include "components/sessions/core/session_types.h" 34 #include "components/sessions/core/session_types.h"
35 #include "components/sync/api/fake_sync_change_processor.h" 35 #include "components/sync/api/fake_sync_change_processor.h"
36 #include "components/sync/api/sync_error_factory_mock.h" 36 #include "components/sync/api/sync_error_factory_mock.h"
37 #include "components/sync/device_info/local_device_info_provider_mock.h" 37 #include "components/sync/device_info/local_device_info_provider_mock.h"
38 #include "components/sync/driver/sync_client.h" 38 #include "components/sync/driver/sync_client.h"
39 #include "components/sync/driver/sync_prefs.h" 39 #include "components/sync/driver/sync_prefs.h"
40 #include "components/sync_sessions/sessions_sync_manager.h" 40 #include "components/sync_sessions/sessions_sync_manager.h"
41 #include "components/sync_sessions/synced_session.h" 41 #include "components/sync_sessions/synced_session.h"
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 // 2 Recently closed heaer (disabled) 607 // 2 Recently closed heaer (disabled)
608 // 3 <separator> 608 // 3 <separator>
609 // 4 No tabs from other Devices 609 // 4 No tabs from other Devices
610 610
611 TestRecentTabsSubMenuModel model(NULL, browser(), NULL); 611 TestRecentTabsSubMenuModel model(NULL, browser(), NULL);
612 EXPECT_EQ(5, model.GetItemCount()); 612 EXPECT_EQ(5, model.GetItemCount());
613 EXPECT_EQ(-1, model.GetMaxWidthForItemAtIndex(2)); 613 EXPECT_EQ(-1, model.GetMaxWidthForItemAtIndex(2));
614 EXPECT_NE(-1, model.GetMaxWidthForItemAtIndex(3)); 614 EXPECT_NE(-1, model.GetMaxWidthForItemAtIndex(3));
615 EXPECT_EQ(-1, model.GetMaxWidthForItemAtIndex(4)); 615 EXPECT_EQ(-1, model.GetMaxWidthForItemAtIndex(4));
616 } 616 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/toolbar/recent_tabs_sub_menu_model.cc ('k') | chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698