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

Unified Diff: sky/engine/core/dom/ElementRareData.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/dom/Element.cpp ('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 4ab818a1a912c8f7896f1c5652c2e84e9898df5f..f76d458c675e81370eab751f30aa607cb771c4d3 100644
--- a/sky/engine/core/dom/ElementRareData.h
+++ b/sky/engine/core/dom/ElementRareData.h
@@ -22,7 +22,7 @@
#ifndef SKY_ENGINE_CORE_DOM_ELEMENTRAREDATA_H_
#define SKY_ENGINE_CORE_DOM_ELEMENTRAREDATA_H_
-#include "sky/engine/core/animation/ActiveAnimations.h"
+#include "sky/engine/core/css/PropertySetCSSStyleDeclaration.h"
#include "sky/engine/core/dom/DOMTokenList.h"
#include "sky/engine/core/dom/NodeRareData.h"
#include "sky/engine/core/dom/shadow/ElementShadow.h"
@@ -75,19 +75,12 @@ public:
DOMTokenList* classList() const { return m_classList.get(); }
void setClassList(PassOwnPtr<DOMTokenList> classList) { m_classList = classList; }
- ActiveAnimations* activeAnimations() { return m_activeAnimations.get(); }
- void setActiveAnimations(PassOwnPtr<ActiveAnimations> activeAnimations)
- {
- m_activeAnimations = activeAnimations;
- }
-
private:
unsigned m_tabindex : 16;
unsigned m_hasTabIndex : 1;
OwnPtr<DOMTokenList> m_classList;
OwnPtr<ElementShadow> m_shadow;
- OwnPtr<ActiveAnimations> m_activeAnimations;
OwnPtr<InlineCSSStyleDeclaration> m_cssomWrapper;
RefPtr<RenderStyle> m_computedStyle;
« no previous file with comments | « sky/engine/core/dom/Element.cpp ('k') | sky/engine/core/dom/ElementRareData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698