| Index: sky/engine/core/page/Page.h
|
| diff --git a/sky/engine/core/page/Page.h b/sky/engine/core/page/Page.h
|
| index d22b60a6a9f5b9460a736fe8599bfc1f5f60adba..fa4b18251e8b170852b7ee3b08be3044aa0b8f37 100644
|
| --- a/sky/engine/core/page/Page.h
|
| +++ b/sky/engine/core/page/Page.h
|
| @@ -28,7 +28,6 @@
|
| #include "sky/engine/core/page/FocusType.h"
|
| #include "sky/engine/core/page/PageAnimator.h"
|
| #include "sky/engine/core/page/PageVisibilityState.h"
|
| -#include "sky/engine/platform/Cursor.h"
|
| #include "sky/engine/platform/HostWindow.h"
|
| #include "sky/engine/platform/LifecycleContext.h"
|
| #include "sky/engine/platform/Supplementable.h"
|
| @@ -114,9 +113,6 @@ public:
|
| PageVisibilityState visibilityState() const;
|
| void setVisibilityState(PageVisibilityState, bool);
|
|
|
| - bool isCursorVisible() const;
|
| - void setIsCursorVisible(bool isVisible) { m_isCursorVisible = isVisible; }
|
| -
|
| #if ENABLE(ASSERT)
|
| void setIsPainting(bool painting) { m_isPainting = painting; }
|
| bool isPainting() const { return m_isPainting; }
|
| @@ -159,8 +155,6 @@ public:
|
| bool shouldReportDetailedMessageForSource(const String& source);
|
| void addMessageToConsole(LocalFrame*, MessageSource, MessageLevel, const String& message, unsigned lineNumber, const String& sourceID, const String& stackTrace);
|
|
|
| - void setCursor(const Cursor&);
|
| -
|
| void* webView() const;
|
|
|
| private:
|
| @@ -204,8 +198,6 @@ private:
|
|
|
| PageVisibilityState m_visibilityState;
|
|
|
| - bool m_isCursorVisible;
|
| -
|
| #if ENABLE(ASSERT)
|
| bool m_isPainting;
|
| #endif
|
|
|