Removed unused VideoCaptureCapability parameters.
[chromium-blink-merge.git] / content / public / renderer / history_item_serialization.h
blob44eb1e1c09491e27d81f6d44c3e7ab16cbad02e6
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.
5 #ifndef CONTENT_RENDERER_HISTORY_ITEM_SERIALIZATION_H_
6 #define CONTENT_RENDERER_HISTORY_ITEM_SERIALIZATION_H_
8 #include <string>
10 #include "content/common/content_export.h"
12 namespace WebKit {
13 class WebHistoryItem;
16 namespace content {
17 class PageState;
19 CONTENT_EXPORT PageState HistoryItemToPageState(
20 const WebKit::WebHistoryItem& item);
21 CONTENT_EXPORT WebKit::WebHistoryItem PageStateToHistoryItem(
22 const PageState& state);
24 } // namespace content
26 #endif // CONTENT_RENDERER_HISTORY_ITEM_SERIALIZATION_H_