| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2008, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. | 3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 const ScrollOffset& visualViewportScrollOffset() const; | 63 const ScrollOffset& visualViewportScrollOffset() const; |
| 64 void setVisualViewportScrollOffset(const ScrollOffset&); | 64 void setVisualViewportScrollOffset(const ScrollOffset&); |
| 65 const ScrollOffset& getScrollOffset() const; | 65 const ScrollOffset& getScrollOffset() const; |
| 66 void setScrollOffset(const ScrollOffset&); | 66 void setScrollOffset(const ScrollOffset&); |
| 67 | 67 |
| 68 float pageScaleFactor() const; | 68 float pageScaleFactor() const; |
| 69 void setPageScaleFactor(float); | 69 void setPageScaleFactor(float); |
| 70 | 70 |
| 71 Vector<String> getReferencedFilePaths(); | 71 Vector<String> getReferencedFilePaths(); |
| 72 const Vector<String>& documentState(); | 72 const Vector<String>& getDocumentState(); |
| 73 void setDocumentState(const Vector<String>&); | 73 void setDocumentState(const Vector<String>&); |
| 74 void setDocumentState(DocumentState*); | 74 void setDocumentState(DocumentState*); |
| 75 void clearDocumentState(); | 75 void clearDocumentState(); |
| 76 | 76 |
| 77 void setURL(const KURL&); | 77 void setURL(const KURL&); |
| 78 void setURLString(const String&); | 78 void setURLString(const String&); |
| 79 void setReferrer(const Referrer&); | 79 void setReferrer(const Referrer&); |
| 80 void setTarget(const String&); | 80 void setTarget(const String&); |
| 81 | 81 |
| 82 void setStateObject(PassRefPtr<SerializedScriptValue>); | 82 void setStateObject(PassRefPtr<SerializedScriptValue>); |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 140 |
| 141 // info used to repost form data | 141 // info used to repost form data |
| 142 RefPtr<EncodedFormData> m_formData; | 142 RefPtr<EncodedFormData> m_formData; |
| 143 AtomicString m_formContentType; | 143 AtomicString m_formContentType; |
| 144 | 144 |
| 145 }; // class HistoryItem | 145 }; // class HistoryItem |
| 146 | 146 |
| 147 } // namespace blink | 147 } // namespace blink |
| 148 | 148 |
| 149 #endif // HISTORYITEM_H | 149 #endif // HISTORYITEM_H |
| OLD | NEW |