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

Unified Diff: sky/engine/core/dom/ElementRareData.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/dom/Element.idl ('k') | sky/engine/core/dom/ElementRareData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/dom/ElementRareData.h
diff --git a/sky/engine/core/dom/ElementRareData.h b/sky/engine/core/dom/ElementRareData.h
index cc8bf1b3d28bfca4cec6db480ca9e903829684a4..4ab818a1a912c8f7896f1c5652c2e84e9898df5f 100644
--- a/sky/engine/core/dom/ElementRareData.h
+++ b/sky/engine/core/dom/ElementRareData.h
@@ -75,9 +75,6 @@ public:
DOMTokenList* classList() const { return m_classList.get(); }
void setClassList(PassOwnPtr<DOMTokenList> classList) { m_classList = classList; }
- IntSize savedLayerScrollOffset() const { return m_savedLayerScrollOffset; }
- void setSavedLayerScrollOffset(IntSize size) { m_savedLayerScrollOffset = size; }
-
ActiveAnimations* activeAnimations() { return m_activeAnimations.get(); }
void setActiveAnimations(PassOwnPtr<ActiveAnimations> activeAnimations)
{
@@ -88,8 +85,6 @@ private:
unsigned m_tabindex : 16;
unsigned m_hasTabIndex : 1;
- IntSize m_savedLayerScrollOffset;
-
OwnPtr<DOMTokenList> m_classList;
OwnPtr<ElementShadow> m_shadow;
OwnPtr<ActiveAnimations> m_activeAnimations;
« no previous file with comments | « sky/engine/core/dom/Element.idl ('k') | sky/engine/core/dom/ElementRareData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698