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

Unified Diff: Source/core/animation/StringKeyframe.h

Issue 620783002: Devtools Animations: Basic animation inspection & control in Styles pane (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Changed sequence number to string id Created 6 years, 2 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
Index: Source/core/animation/StringKeyframe.h
diff --git a/Source/core/animation/StringKeyframe.h b/Source/core/animation/StringKeyframe.h
index a55a501006e22fe96321abd7fefa5e964a0703da..3755e1f5fe5f6e8ba149fd1efc12af44e54e8e53 100644
--- a/Source/core/animation/StringKeyframe.h
+++ b/Source/core/animation/StringKeyframe.h
@@ -13,6 +13,8 @@ namespace blink {
class StyleSheetContents;
class StringKeyframe : public Keyframe {
+friend class InspectorCSSAgent;
+
public:
static PassRefPtrWillBeRawPtr<StringKeyframe> create()
{
@@ -54,6 +56,9 @@ public:
mutable RefPtrWillBeMember<AnimatableValue> m_animatableValueCache;
};
+protected:
+ MutableStylePropertySet* propertySet () const { return m_propertySet.get(); }
+
private:
StringKeyframe()
: m_propertySet(MutableStylePropertySet::create())

Powered by Google App Engine
This is Rietveld 408576698