1 /* 2 * Copyright (C) 2009 Google Inc. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are 6 * met: 7 * 8 * * Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * * Redistributions in binary form must reproduce the above 11 * copyright notice, this list of conditions and the following disclaimer 12 * in the documentation and/or other materials provided with the 13 * distribution. 14 * * Neither the name of Google Inc. nor the names of its 15 * contributors may be used to endorse or promote products derived from 16 * this software without specific prior written permission. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 */ 30 31 #ifndef WebHistoryItem_h 32 #define WebHistoryItem_h 33 34 #include "../platform/WebCommon.h" 35 #include "../platform/WebPrivatePtr.h" 36 37 namespace WebCore { class HistoryItem; } 38 39 namespace blink { 40 class WebHTTPBody; 41 class WebString; 42 class WebSerializedScriptValue; 43 struct WebPoint; 44 template <typename T> class WebVector; 45 46 // Represents a frame-level navigation entry in session history. A 47 // WebHistoryItem is a node in a tree. 48 // 49 // Copying a WebHistoryItem is cheap. 50 // 51 class WebHistoryItem { 52 public: ~WebHistoryItem()53 ~WebHistoryItem() { reset(); } 54 WebHistoryItem()55 WebHistoryItem() { } WebHistoryItem(const WebHistoryItem & h)56 WebHistoryItem(const WebHistoryItem& h) { assign(h); } 57 WebHistoryItem& operator=(const WebHistoryItem& h) 58 { 59 assign(h); 60 return *this; 61 } 62 63 BLINK_EXPORT void initialize(); 64 BLINK_EXPORT void reset(); 65 BLINK_EXPORT void assign(const WebHistoryItem&); 66 isNull()67 bool isNull() const { return m_private.isNull(); } 68 69 BLINK_EXPORT WebString urlString() const; 70 BLINK_EXPORT void setURLString(const WebString&); 71 72 BLINK_EXPORT WebString originalURLString() const; 73 BLINK_EXPORT void setOriginalURLString(const WebString&); 74 75 BLINK_EXPORT WebString referrer() const; 76 BLINK_EXPORT void setReferrer(const WebString&); 77 78 BLINK_EXPORT WebString target() const; 79 BLINK_EXPORT void setTarget(const WebString&); 80 81 BLINK_EXPORT WebPoint scrollOffset() const; 82 BLINK_EXPORT void setScrollOffset(const WebPoint&); 83 84 BLINK_EXPORT float pageScaleFactor() const; 85 BLINK_EXPORT void setPageScaleFactor(float); 86 87 BLINK_EXPORT WebVector<WebString> documentState() const; 88 BLINK_EXPORT void setDocumentState(const WebVector<WebString>&); 89 90 BLINK_EXPORT long long itemSequenceNumber() const; 91 BLINK_EXPORT void setItemSequenceNumber(long long); 92 93 BLINK_EXPORT long long documentSequenceNumber() const; 94 BLINK_EXPORT void setDocumentSequenceNumber(long long); 95 96 BLINK_EXPORT long long targetFrameID() const; 97 BLINK_EXPORT void setTargetFrameID(long long); 98 99 BLINK_EXPORT WebSerializedScriptValue stateObject() const; 100 BLINK_EXPORT void setStateObject(const WebSerializedScriptValue&); 101 102 BLINK_EXPORT WebString httpContentType() const; 103 BLINK_EXPORT void setHTTPContentType(const WebString&); 104 105 BLINK_EXPORT WebHTTPBody httpBody() const; 106 BLINK_EXPORT void setHTTPBody(const WebHTTPBody&); 107 108 BLINK_EXPORT WebVector<WebHistoryItem> children() const; 109 BLINK_EXPORT void setChildren(const WebVector<WebHistoryItem>&); 110 BLINK_EXPORT void appendToChildren(const WebHistoryItem&); 111 112 BLINK_EXPORT WebVector<WebString> getReferencedFilePaths() const; 113 114 #if BLINK_IMPLEMENTATION 115 WebHistoryItem(const WTF::PassRefPtr<WebCore::HistoryItem>&); 116 WebHistoryItem& operator=(const WTF::PassRefPtr<WebCore::HistoryItem>&); 117 operator WTF::PassRefPtr<WebCore::HistoryItem>() const; 118 #endif 119 120 private: 121 void ensureMutable(); 122 WebPrivatePtr<WebCore::HistoryItem> m_private; 123 }; 124 125 } // namespace blink 126 127 #endif 128