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

Unified Diff: third_party/WebKit/Source/devtools/front_end/source_frame/SourcesTextEditor.js

Issue 2286963002: DevTools: Turn *Model events into symbols (Closed)
Patch Set: Add SourcesTextEditor events Created 4 years, 4 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 | « third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/source_frame/SourcesTextEditor.js
diff --git a/third_party/WebKit/Source/devtools/front_end/source_frame/SourcesTextEditor.js b/third_party/WebKit/Source/devtools/front_end/source_frame/SourcesTextEditor.js
index b0850d71121775065760dcb71e959b81cfd3e140..03a47b2d7ff124f1220972c8d4636ff74aabc4a6 100644
--- a/third_party/WebKit/Source/devtools/front_end/source_frame/SourcesTextEditor.js
+++ b/third_party/WebKit/Source/devtools/front_end/source_frame/SourcesTextEditor.js
@@ -593,10 +593,11 @@ WebInspector.SourcesTextEditor.prototype = {
/** @typedef {{lineNumber: number, event: !Event}} */
WebInspector.SourcesTextEditor.GutterClickEventData;
-/** @enum {string} */
+/** @enum {symbol} */
WebInspector.SourcesTextEditor.Events = {
- GutterClick: "GutterClick"
+ GutterClick: Symbol("GutterClick")
}
+
/**
* @interface
*/
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698