Index: third_party/WebKit/Source/devtools/front_end/timeline/Layers3DView.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/Layers3DView.js b/third_party/WebKit/Source/devtools/front_end/timeline/Layers3DView.js |
index 0964256669cd602a38a7b61f4204c7042d2115cd..9e4468d76ba71e012866c3c16a6b689aa013a244 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/timeline/Layers3DView.js |
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/Layers3DView.js |
@@ -86,9 +86,10 @@ WebInspector.Layers3DView.OutlineType = { |
/** |
* @enum {string} |
*/ |
+/** @enum {symbol} */ |
WebInspector.Layers3DView.Events = { |
- LayerSnapshotRequested: "LayerSnapshotRequested", |
- PaintProfilerRequested: "PaintProfilerRequested", |
+ LayerSnapshotRequested: Symbol("LayerSnapshotRequested"), |
+ PaintProfilerRequested: Symbol("PaintProfilerRequested") |
} |
/** |
@@ -813,8 +814,9 @@ WebInspector.LayerTextureManager = function() |
this.reset(); |
} |
+/** @enum {symbol} */ |
WebInspector.LayerTextureManager.Events = { |
- TextureUpdated: "TextureUpated" |
+ TextureUpdated: Symbol("TextureUpated") |
} |
WebInspector.LayerTextureManager.prototype = { |