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

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

Issue 1229273004: Remove Animations and Transitions. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 5 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/frame/LocalFrame.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 fa4b18251e8b170852b7ee3b08be3044aa0b8f37..8dcca453852495c510de849a6755effc58eaf584 100644
--- a/sky/engine/core/page/Page.h
+++ b/sky/engine/core/page/Page.h
@@ -26,8 +26,6 @@
#include "sky/engine/core/frame/SettingsDelegate.h"
#include "sky/engine/core/inspector/ConsoleAPITypes.h"
#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/HostWindow.h"
#include "sky/engine/platform/LifecycleContext.h"
#include "sky/engine/platform/Supplementable.h"
@@ -99,7 +97,6 @@ public:
void documentDetached(Document*);
- PageAnimator& animator() { return m_animator; }
DragCaretController& dragCaretController() const { return *m_dragCaretController; }
FocusController& focusController() const { return *m_focusController; }
@@ -110,9 +107,6 @@ public:
float deviceScaleFactor() const { return m_deviceScaleFactor; }
void setDeviceScaleFactor(float);
- PageVisibilityState visibilityState() const;
- void setVisibilityState(PageVisibilityState, bool);
-
#if ENABLE(ASSERT)
void setIsPainting(bool painting) { m_isPainting = painting; }
bool isPainting() const { return m_isPainting; }
@@ -169,7 +163,6 @@ private:
// SettingsDelegate overrides.
virtual void settingsChanged(SettingsDelegate::ChangeType) override;
- PageAnimator m_animator;
ChromeClient* m_chromeClient;
const OwnPtr<DragCaretController> m_dragCaretController;
const OwnPtr<FocusController> m_focusController;
@@ -196,8 +189,6 @@ private:
double m_timerAlignmentInterval;
- PageVisibilityState m_visibilityState;
-
#if ENABLE(ASSERT)
bool m_isPainting;
#endif
« no previous file with comments | « sky/engine/core/frame/LocalFrame.cpp ('k') | sky/engine/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698