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 #include "content/public/renderer/history_item_serialization.h" | 5 #include "content/renderer/history_serialization.h" |
6 | 6 |
7 #include "content/common/page_state_serialization.h" | 7 #include "content/common/page_state_serialization.h" |
8 #include "content/public/common/page_state.h" | 8 #include "content/public/common/page_state.h" |
9 #include "third_party/WebKit/public/platform/WebHTTPBody.h" | 9 #include "third_party/WebKit/public/platform/WebHTTPBody.h" |
10 #include "third_party/WebKit/public/platform/WebPoint.h" | 10 #include "third_party/WebKit/public/platform/WebPoint.h" |
11 #include "third_party/WebKit/public/platform/WebString.h" | 11 #include "third_party/WebKit/public/platform/WebString.h" |
12 #include "third_party/WebKit/public/platform/WebVector.h" | 12 #include "third_party/WebKit/public/platform/WebVector.h" |
13 #include "third_party/WebKit/public/web/WebHistoryItem.h" | 13 #include "third_party/WebKit/public/web/WebHistoryItem.h" |
14 #include "third_party/WebKit/public/web/WebSerializedScriptValue.h" | 14 #include "third_party/WebKit/public/web/WebSerializedScriptValue.h" |
15 | 15 |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 | 183 |
184 WebHistoryItem item; | 184 WebHistoryItem item; |
185 item.initialize(); | 185 item.initialize(); |
186 if (!RecursivelyGenerateHistoryItem(state.top, &item)) | 186 if (!RecursivelyGenerateHistoryItem(state.top, &item)) |
187 return WebHistoryItem(); | 187 return WebHistoryItem(); |
188 | 188 |
189 return item; | 189 return item; |
190 } | 190 } |
191 | 191 |
192 } // namespace content | 192 } // namespace content |
OLD | NEW |