| 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 #ifndef CHROME_BROWSER_UI_TOOLBAR_RECENT_TABS_BUILDER_TEST_HELPER_H_ | 5 #ifndef CHROME_BROWSER_UI_TOOLBAR_RECENT_TABS_BUILDER_TEST_HELPER_H_ |
| 6 #define CHROME_BROWSER_UI_TOOLBAR_RECENT_TABS_BUILDER_TEST_HELPER_H_ | 6 #define CHROME_BROWSER_UI_TOOLBAR_RECENT_TABS_BUILDER_TEST_HELPER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| 11 #include "base/time/time.h" | 11 #include "base/time/time.h" |
| 12 #include "chrome/browser/sessions/session_id.h" | 12 #include "components/sessions/session_id.h" |
| 13 | 13 |
| 14 namespace browser_sync { | 14 namespace browser_sync { |
| 15 class OpenTabsUIDelegate; | 15 class OpenTabsUIDelegate; |
| 16 class SessionsSyncManager; | 16 class SessionsSyncManager; |
| 17 } | 17 } |
| 18 namespace sync_pb { | 18 namespace sync_pb { |
| 19 class SessionSpecifics; | 19 class SessionSpecifics; |
| 20 } | 20 } |
| 21 | 21 |
| 22 // Utility class to help add recent tabs for testing. | 22 // Utility class to help add recent tabs for testing. |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 std::vector<SessionInfo> sessions_; | 74 std::vector<SessionInfo> sessions_; |
| 75 base::Time start_time_; | 75 base::Time start_time_; |
| 76 | 76 |
| 77 int max_tab_node_id_; | 77 int max_tab_node_id_; |
| 78 | 78 |
| 79 DISALLOW_COPY_AND_ASSIGN(RecentTabsBuilderTestHelper); | 79 DISALLOW_COPY_AND_ASSIGN(RecentTabsBuilderTestHelper); |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 #endif // CHROME_BROWSER_UI_TOOLBAR_RECENT_TABS_BUILDER_TEST_HELPER_H_ | 82 #endif // CHROME_BROWSER_UI_TOOLBAR_RECENT_TABS_BUILDER_TEST_HELPER_H_ |
| OLD | NEW |