| Index: third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebHistoryItem.cpp b/third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| index bdd4bf713e7125ea38d96a924fdb731bfd2de856..7dafe65c0362e9d925de5786ca54897371ee6d7f 100644
|
| --- a/third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| +++ b/third_party/WebKit/Source/web/WebHistoryItem.cpp
|
| @@ -198,6 +198,15 @@ WebVector<WebString> WebHistoryItem::getReferencedFilePaths() const {
|
| return results;
|
| }
|
|
|
| +bool WebHistoryItem::didSaveScrollOrScaleState() const {
|
| + return m_private->didSaveScrollOrScaleState();
|
| +}
|
| +
|
| +void WebHistoryItem::setDidSaveScrollOrScaleState(
|
| + bool hasSaveScrollOrScaleState) {
|
| + m_private->setDidSaveScrollOrScaleState(hasSaveScrollOrScaleState);
|
| +}
|
| +
|
| WebHistoryItem::WebHistoryItem(HistoryItem* item) : m_private(item) {}
|
|
|
| WebHistoryItem& WebHistoryItem::operator=(HistoryItem* item) {
|
|
|