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

Unified Diff: Source/devtools/front_end/sdk/AnimationModel.js

Issue 1082993002: Devtools Animations: Remove unused keyframe style information (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 5 years, 8 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/inspector/InspectorAnimationAgent.cpp ('k') | Source/devtools/protocol.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sdk/AnimationModel.js
diff --git a/Source/devtools/front_end/sdk/AnimationModel.js b/Source/devtools/front_end/sdk/AnimationModel.js
index 573293b402253abe935d0204af9832f2782d23e9..8c661581a74d31f3e6b8beac4289f467a5c34e4c 100644
--- a/Source/devtools/front_end/sdk/AnimationModel.js
+++ b/Source/devtools/front_end/sdk/AnimationModel.js
@@ -406,7 +406,6 @@ WebInspector.AnimationModel.KeyframeStyle = function(target, payload)
{
WebInspector.SDKObject.call(this, target);
this._payload = payload;
- this._style = WebInspector.CSSStyleDeclaration.parsePayload(this.target().cssModel, payload.style);
this._offset = this._payload.offset;
}
@@ -436,14 +435,6 @@ WebInspector.AnimationModel.KeyframeStyle.prototype = {
},
/**
- * @return {!WebInspector.CSSStyleDeclaration}
- */
- style: function()
- {
- return this._style;
- },
-
- /**
* @return {string}
*/
easing: function()
« no previous file with comments | « Source/core/inspector/InspectorAnimationAgent.cpp ('k') | Source/devtools/protocol.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698