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

Unified Diff: sky/engine/core/dom/Document.h

Issue 878303002: Remove more scrolling code from Sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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/css/resolver/StyleBuilderCustom.cpp ('k') | sky/engine/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/dom/Document.h
diff --git a/sky/engine/core/dom/Document.h b/sky/engine/core/dom/Document.h
index 20a98e13d2701930cf9beedf88c652ee7c67e82b..41e5aede9c1979c5f5f44f98402ceeb06aee1704 100644
--- a/sky/engine/core/dom/Document.h
+++ b/sky/engine/core/dom/Document.h
@@ -354,7 +354,6 @@ public:
ANIMATIONSTART_LISTENER = 1 << 7,
ANIMATIONITERATION_LISTENER = 1 << 8,
TRANSITIONEND_LISTENER = 1 << 9,
- SCROLL_LISTENER = 1 << 10,
};
bool hasListenerType(ListenerType listenerType) const { return (m_listenerTypes & listenerType); }
@@ -434,7 +433,6 @@ public:
void setContainsValidityStyleRules() { m_containsValidityStyleRules = true; }
void enqueueResizeEvent();
- void enqueueScrollEventForNode(Node*);
void enqueueAnimationFrameEvent(PassRefPtr<Event>);
// Only one event for a target/event type combination will be dispatched per frame.
void enqueueUniqueAnimationFrameEvent(PassRefPtr<Event>);
@@ -469,9 +467,6 @@ public:
bool haveImportsLoaded() const;
void didLoadAllImports();
- void adjustFloatQuadsForScroll(Vector<FloatQuad>&);
- void adjustFloatRectForScroll(FloatRect&);
-
unsigned activeParserCount() { return m_activeParserCount; }
void incrementActiveParserCount() { ++m_activeParserCount; }
void decrementActiveParserCount();
« no previous file with comments | « sky/engine/core/css/resolver/StyleBuilderCustom.cpp ('k') | sky/engine/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698