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

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

Issue 2203673002: [Sync] Move //components/sync_driver to //components/sync/driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sd-a
Patch Set: Full change rebased on static lib. Created 4 years, 4 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 16 matching lines...) Expand all
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/browser/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_driver/local_device_info_provider_mock.h" 37 #include "components/sync/driver/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"
42 #include "content/public/browser/browser_thread.h" 42 #include "content/public/browser/browser_thread.h"
43 #include "content/public/test/test_utils.h" 43 #include "content/public/test/test_utils.h"
44 #include "grit/generated_resources.h" 44 #include "grit/generated_resources.h"
45 #include "testing/gmock/include/gmock/gmock.h" 45 #include "testing/gmock/include/gmock/gmock.h"
46 #include "testing/gtest/include/gtest/gtest.h" 46 #include "testing/gtest/include/gtest/gtest.h"
47 47
48 namespace { 48 namespace {
49 49
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 // 2 Recently closed heaer (disabled) 608 // 2 Recently closed heaer (disabled)
609 // 3 <separator> 609 // 3 <separator>
610 // 4 No tabs from other Devices 610 // 4 No tabs from other Devices
611 611
612 TestRecentTabsSubMenuModel model(NULL, browser(), NULL); 612 TestRecentTabsSubMenuModel model(NULL, browser(), NULL);
613 EXPECT_EQ(5, model.GetItemCount()); 613 EXPECT_EQ(5, model.GetItemCount());
614 EXPECT_EQ(-1, model.GetMaxWidthForItemAtIndex(2)); 614 EXPECT_EQ(-1, model.GetMaxWidthForItemAtIndex(2));
615 EXPECT_NE(-1, model.GetMaxWidthForItemAtIndex(3)); 615 EXPECT_NE(-1, model.GetMaxWidthForItemAtIndex(3));
616 EXPECT_EQ(-1, model.GetMaxWidthForItemAtIndex(4)); 616 EXPECT_EQ(-1, model.GetMaxWidthForItemAtIndex(4));
617 } 617 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/sync/one_click_signin_sync_starter.cc ('k') | chrome/browser/ui/views/profiles/profile_chooser_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698