Index: third_party/WebKit/Source/devtools/front_end/ui/ActionRegistry.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ActionRegistry.js b/third_party/WebKit/Source/devtools/front_end/ui/ActionRegistry.js |
index 356be41889d004c20649720ee4a5950167c9c6ec..91d5f73b2b82c5ba4bdaf99d8716c491e04e25a7 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/ui/ActionRegistry.js |
+++ b/third_party/WebKit/Source/devtools/front_end/ui/ActionRegistry.js |
@@ -87,9 +87,10 @@ WebInspector.Action = function(extension) |
this._toggled = false; |
} |
+/** @enum {symbol} */ |
WebInspector.Action.Events = { |
- Enabled: "Enabled", |
- Toggled: "Toggled" |
+ Enabled: Symbol("Enabled"), |
+ Toggled: Symbol("Toggled") |
} |
WebInspector.Action.prototype = { |