Index: third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js b/third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js |
index 1c49a82014b32542c710a7a77956ac365a5d4d48..5d6bbb1b70fb20bf59bf9b1fc65fc3781b42fd12 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js |
+++ b/third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js |
@@ -24,9 +24,10 @@ WebInspector.AnimationModel = function(target) |
this._screenshotCapture = new WebInspector.AnimationModel.ScreenshotCapture(target, this); |
} |
+/** @enum {symbol} */ |
WebInspector.AnimationModel.Events = { |
- AnimationGroupStarted: "AnimationGroupStarted", |
- ModelReset: "ModelReset" |
+ AnimationGroupStarted: Symbol("AnimationGroupStarted"), |
+ ModelReset: Symbol("ModelReset") |
} |
WebInspector.AnimationModel.prototype = { |