OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef COMPONENTS_SESSIONS_SESSION_TYPES_TEST_HELPER_H_ | 5 #ifndef COMPONENTS_SESSIONS_SESSION_TYPES_TEST_HELPER_H_ |
6 #define COMPONENTS_SESSIONS_SESSION_TYPES_TEST_HELPER_H_ | 6 #define COMPONENTS_SESSIONS_SESSION_TYPES_TEST_HELPER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "content/public/common/page_transition_types.h" | |
12 | 11 |
13 class GURL; | 12 class GURL; |
14 | 13 |
15 namespace base { | 14 namespace base { |
16 class Time; | 15 class Time; |
17 } | 16 } |
18 | 17 |
19 namespace content { | 18 namespace content { |
20 class PageState; | 19 class PageState; |
21 struct Referrer; | 20 struct Referrer; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 static void SetTimestamp(base::Time timestamp, | 53 static void SetTimestamp(base::Time timestamp, |
55 SerializedNavigationEntry* navigation); | 54 SerializedNavigationEntry* navigation); |
56 | 55 |
57 private: | 56 private: |
58 DISALLOW_IMPLICIT_CONSTRUCTORS(SerializedNavigationEntryTestHelper); | 57 DISALLOW_IMPLICIT_CONSTRUCTORS(SerializedNavigationEntryTestHelper); |
59 }; | 58 }; |
60 | 59 |
61 } // sessions | 60 } // sessions |
62 | 61 |
63 #endif // COMPONENTS_SESSIONS_SESSION_TYPES_TEST_HELPER_H_ | 62 #endif // COMPONENTS_SESSIONS_SESSION_TYPES_TEST_HELPER_H_ |
OLD | NEW |