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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/text_editor/module.json

Issue 2372663004: DevTools: Replace multiline InplaceEditor with CodeMirrorTextEditor (Closed)
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.InplaceEditor",
5 "className": "WebInspector.CodeMirrorUtils"
6 },
7 {
8 "type": "@WebInspector.TokenizerFactory", 4 "type": "@WebInspector.TokenizerFactory",
9 "className": "WebInspector.CodeMirrorUtils.TokenizerFactory" 5 "className": "WebInspector.CodeMirrorUtils.TokenizerFactory"
10 }, 6 },
11 { 7 {
12 "type": "@WebInspector.TextEditorFactory", 8 "type": "@WebInspector.TextEditorFactory",
13 "className": "WebInspector.CodeMirrorTextEditorFactory" 9 "className": "WebInspector.CodeMirrorTextEditorFactory"
14 } 10 }
15 ], 11 ],
16 "dependencies": [ 12 "dependencies": [
17 "ui", 13 "ui",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "../cm/markselection.js", 47 "../cm/markselection.js",
52 "../cm/comment.js", 48 "../cm/comment.js",
53 "../cm/overlay.js", 49 "../cm/overlay.js",
54 "../cm/activeline.js" 50 "../cm/activeline.js"
55 ], 51 ],
56 "resources": [ 52 "resources": [
57 "../cm/codemirror.css", 53 "../cm/codemirror.css",
58 "cmdevtools.css" 54 "cmdevtools.css"
59 ] 55 ]
60 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698