| Index: sky/engine/core/frame/LocalDOMWindow.h
|
| diff --git a/sky/engine/core/frame/LocalDOMWindow.h b/sky/engine/core/frame/LocalDOMWindow.h
|
| index 45cff844b41424d20eb76fe55df529c3613e5ab3..6a64225ca5aaab2ffe956c0158a4c24f2bdec88b 100644
|
| --- a/sky/engine/core/frame/LocalDOMWindow.h
|
| +++ b/sky/engine/core/frame/LocalDOMWindow.h
|
| @@ -59,7 +59,6 @@ class EventQueue;
|
| class ExceptionState;
|
| class FloatRect;
|
| class FrameConsole;
|
| -class History;
|
| class IDBFactory;
|
| class LocalFrame;
|
| class Location;
|
| @@ -111,7 +110,6 @@ public:
|
| // DOM Level 0
|
|
|
| Screen& screen() const;
|
| - History& history() const;
|
|
|
| Location& location() const;
|
| void setLocation(const String& location, LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow,
|
| @@ -196,10 +194,8 @@ public:
|
| void enqueueDocumentEvent(PassRefPtr<Event>);
|
| void enqueuePageshowEvent(PageshowEventPersistence);
|
| void enqueueHashchangeEvent(const String& oldURL, const String& newURL);
|
| - void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue>);
|
| void dispatchWindowLoadEvent();
|
| void documentWasClosed();
|
| - void statePopped(PassRefPtr<SerializedScriptValue>);
|
|
|
| // FIXME: This shouldn't be public once LocalDOMWindow becomes ExecutionContext.
|
| void clearEventQueue();
|
| @@ -243,7 +239,6 @@ private:
|
| HashSet<DOMWindowProperty*> m_properties;
|
|
|
| mutable RefPtr<Screen> m_screen;
|
| - mutable RefPtr<History> m_history;
|
| mutable RefPtr<Console> m_console;
|
| mutable RefPtr<Location> m_location;
|
| mutable RefPtr<StyleMedia> m_media;
|
| @@ -251,7 +246,6 @@ private:
|
| mutable RefPtr<DOMWindowCSS> m_css;
|
|
|
| RefPtr<DOMWindowEventQueue> m_eventQueue;
|
| - RefPtr<SerializedScriptValue> m_pendingStateObject;
|
| };
|
|
|
| } // namespace blink
|
|
|