OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_SERIALIZED_NAVIGATION_ENTRY_H_ | 5 #ifndef COMPONENTS_SESSIONS_SERIALIZED_NAVIGATION_ENTRY_H_ |
6 #define COMPONENTS_SESSIONS_SERIALIZED_NAVIGATION_ENTRY_H_ | 6 #define COMPONENTS_SESSIONS_SERIALIZED_NAVIGATION_ENTRY_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
15 #include "base/time.h" | 15 #include "base/time/time.h" |
16 #include "components/sessions/sessions_export.h" | 16 #include "components/sessions/sessions_export.h" |
17 #include "content/public/common/page_state.h" | 17 #include "content/public/common/page_state.h" |
18 #include "content/public/common/page_transition_types.h" | 18 #include "content/public/common/page_transition_types.h" |
19 #include "content/public/common/referrer.h" | 19 #include "content/public/common/referrer.h" |
20 #include "googleurl/src/gurl.h" | 20 #include "googleurl/src/gurl.h" |
21 | 21 |
22 class Pickle; | 22 class Pickle; |
23 class PickleIterator; | 23 class PickleIterator; |
24 | 24 |
25 namespace content { | 25 namespace content { |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 GURL favicon_url_; | 151 GURL favicon_url_; |
152 | 152 |
153 // Additional information. | 153 // Additional information. |
154 BlockedState blocked_state_; | 154 BlockedState blocked_state_; |
155 std::set<std::string> content_pack_categories_; | 155 std::set<std::string> content_pack_categories_; |
156 }; | 156 }; |
157 | 157 |
158 } // namespace sessions | 158 } // namespace sessions |
159 | 159 |
160 #endif // COMPONENTS_SESSIONS_SERIALIZED_NAVIGATION_ENTRY_H_ | 160 #endif // COMPONENTS_SESSIONS_SERIALIZED_NAVIGATION_ENTRY_H_ |
OLD | NEW |