Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: content/public/renderer/history_item_serialization.h

Issue 14985014: Introduce content::PageState (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compilation issues. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_RENDERER_HISTORY_ITEM_SERIALIZATION_H_
6 #define CONTENT_RENDERER_HISTORY_ITEM_SERIALIZATION_H_
7
8 #include <string>
9
10 #include "content/common/content_export.h"
11
12 namespace WebKit {
13 class WebHistoryItem;
14 }
15
16 namespace content {
17 class PageState;
18
19 CONTENT_EXPORT PageState HistoryItemToPageState(
brettw 2013/05/17 04:57:10 Does this need to be in the public API? I was not
20 const WebKit::WebHistoryItem& item);
21 CONTENT_EXPORT WebKit::WebHistoryItem PageStateToHistoryItem(
22 const PageState& state);
23
24 } // namespace content
25
26 #endif // CONTENT_RENDERER_HISTORY_ITEM_SERIALIZATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698