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

Unified Diff: sky/engine/core/page/Page.h

Issue 1076623002: Remove our impressive amount of CSS Cursor code. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 8 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 | « sky/engine/core/page/EventHandler.cpp ('k') | sky/engine/core/page/Page.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « sky/engine/core/page/EventHandler.cpp ('k') | sky/engine/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698