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_SESSIONS_SESSION_SERVICE_TEST_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SESSIONS_SESSION_SERVICE_TEST_HELPER_H_ |
6 #define CHROME_BROWSER_SESSIONS_SESSION_SERVICE_TEST_HELPER_H_ | 6 #define CHROME_BROWSER_SESSIONS_SESSION_SERVICE_TEST_HELPER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "chrome/browser/sessions/session_id.h" | 13 #include "components/sessions/session_id.h" |
14 | 14 |
15 class SessionBackend; | 15 class SessionBackend; |
16 class SessionCommand; | 16 class SessionCommand; |
17 class SessionService; | 17 class SessionService; |
18 struct SessionTab; | 18 struct SessionTab; |
19 struct SessionWindow; | 19 struct SessionWindow; |
20 | 20 |
21 namespace sessions { | 21 namespace sessions { |
22 class SerializedNavigationEntry; | 22 class SerializedNavigationEntry; |
23 } | 23 } |
24 | 24 |
25 // A simple class that makes writing SessionService related tests easier. | 25 // A simple class that makes writing SessionService related tests easier. |
26 | 26 |
27 class SessionServiceTestHelper { | 27 class SessionServiceTestHelper { |
28 public: | 28 public: |
29 explicit SessionServiceTestHelper(); | 29 SessionServiceTestHelper(); |
30 explicit SessionServiceTestHelper(SessionService* service); | 30 explicit SessionServiceTestHelper(SessionService* service); |
31 ~SessionServiceTestHelper(); | 31 ~SessionServiceTestHelper(); |
32 | 32 |
33 void PrepareTabInWindow(const SessionID& window_id, | 33 void PrepareTabInWindow(const SessionID& window_id, |
34 const SessionID& tab_id, | 34 const SessionID& tab_id, |
35 int visual_index, | 35 int visual_index, |
36 bool select); | 36 bool select); |
37 | 37 |
38 void SetTabExtensionAppID(const SessionID& window_id, | 38 void SetTabExtensionAppID(const SessionID& window_id, |
39 const SessionID& tab_id, | 39 const SessionID& tab_id, |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 76 |
77 SessionBackend* backend(); | 77 SessionBackend* backend(); |
78 | 78 |
79 private: | 79 private: |
80 scoped_ptr<SessionService> service_; | 80 scoped_ptr<SessionService> service_; |
81 | 81 |
82 DISALLOW_COPY_AND_ASSIGN(SessionServiceTestHelper); | 82 DISALLOW_COPY_AND_ASSIGN(SessionServiceTestHelper); |
83 }; | 83 }; |
84 | 84 |
85 #endif // CHROME_BROWSER_SESSIONS_SESSION_SERVICE_TEST_HELPER_H_ | 85 #endif // CHROME_BROWSER_SESSIONS_SESSION_SERVICE_TEST_HELPER_H_ |
OLD | NEW |