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

Unified Diff: Source/core/layout/style/KeyframeList.h

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 years, 9 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 | « Source/core/layout/style/GridResolvedPosition.cpp ('k') | Source/core/layout/style/LayoutStyle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/style/KeyframeList.h
diff --git a/Source/core/layout/style/KeyframeList.h b/Source/core/layout/style/KeyframeList.h
index 1e5b1e6ef9a856f1cea67f735dfabd921f155f5e..464db52564e364cf66ddb811b22f0a741eeaf7f4 100644
--- a/Source/core/layout/style/KeyframeList.h
+++ b/Source/core/layout/style/KeyframeList.h
@@ -35,11 +35,11 @@
namespace blink {
class LayoutObject;
-class LayoutStyle;
+class ComputedStyle;
class KeyframeValue {
public:
- KeyframeValue(double key, PassRefPtr<LayoutStyle> style)
+ KeyframeValue(double key, PassRefPtr<ComputedStyle> style)
: m_key(key)
, m_style(style)
{
@@ -52,13 +52,13 @@ public:
double key() const { return m_key; }
void setKey(double key) { m_key = key; }
- const LayoutStyle* style() const { return m_style.get(); }
- void setStyle(PassRefPtr<LayoutStyle> style) { m_style = style; }
+ const ComputedStyle* style() const { return m_style.get(); }
+ void setStyle(PassRefPtr<ComputedStyle> style) { m_style = style; }
private:
double m_key;
HashSet<CSSPropertyID> m_properties; // The properties specified in this keyframe.
- RefPtr<LayoutStyle> m_style;
+ RefPtr<ComputedStyle> m_style;
};
class KeyframeList {
« no previous file with comments | « Source/core/layout/style/GridResolvedPosition.cpp ('k') | Source/core/layout/style/LayoutStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698