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

Side by Side Diff: third_party/WebKit/Source/core/loader/HistoryItem.h

Issue 2569883002: Rename documentState() to getDocumentState(). (Closed)
Patch Set: Created 4 years 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
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoader.cpp ('k') | third_party/WebKit/Source/core/loader/HistoryItem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698