| 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
|
|
|