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

Unified Diff: Source/WebCore/page/History.h

Issue 12092048: Merge 140748 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 11 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/loader/FrameLoader.cpp ('k') | Source/WebCore/page/History.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/page/History.h
===================================================================
--- Source/WebCore/page/History.h (revision 141135)
+++ Source/WebCore/page/History.h (working copy)
@@ -45,7 +45,7 @@
static PassRefPtr<History> create(Frame* frame) { return adoptRef(new History(frame)); }
unsigned length() const;
- SerializedScriptValue* state();
+ PassRefPtr<SerializedScriptValue> state();
void back();
void forward();
void go(int distance);
@@ -68,9 +68,9 @@
KURL urlForState(const String& url);
- SerializedScriptValue* stateInternal() const;
+ PassRefPtr<SerializedScriptValue> stateInternal() const;
- SerializedScriptValue* m_lastStateObjectRequested;
+ RefPtr<SerializedScriptValue> m_lastStateObjectRequested;
};
} // namespace WebCore
« no previous file with comments | « Source/WebCore/loader/FrameLoader.cpp ('k') | Source/WebCore/page/History.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698