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

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

Issue 620783002: Devtools Animations: Basic animation inspection & control in Styles pane (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update JSDOC 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/devtools/front_end/sdk/Target.js
diff --git a/Source/devtools/front_end/sdk/Target.js b/Source/devtools/front_end/sdk/Target.js
index 904255f07090ba22a13acd14d2c8d70461de79f9..d0b197129be0c950affeaced5801d60cf9c819c8 100644
--- a/Source/devtools/front_end/sdk/Target.js
+++ b/Source/devtools/front_end/sdk/Target.js
@@ -166,6 +166,9 @@ WebInspector.Target.prototype = {
/** @type {!WebInspector.LayerTreeModel} */
this.layerTreeModel = new WebInspector.LayerTreeModel(this);
+ /** @type {!WebInspector.AnimationModel} */
+ this.animationModel = new WebInspector.AnimationModel(this);
+
if (callback)
callback(this);
},

Powered by Google App Engine
This is Rietveld 408576698