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

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: resize width Created 3 years, 9 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": "@UI.InplaceEditor",
5 "className": "TextEditor.CodeMirrorUtils"
6 },
7 {
8 "type": "@Common.TokenizerFactory", 4 "type": "@Common.TokenizerFactory",
9 "className": "TextEditor.CodeMirrorUtils.TokenizerFactory" 5 "className": "TextEditor.CodeMirrorUtils.TokenizerFactory"
10 }, 6 },
11 { 7 {
12 "type": "@UI.TextEditorFactory", 8 "type": "@UI.TextEditorFactory",
13 "className": "TextEditor.CodeMirrorTextEditorFactory" 9 "className": "TextEditor.CodeMirrorTextEditorFactory"
14 } 10 }
15 ], 11 ],
16 "dependencies": [ 12 "dependencies": [
17 "ui", 13 "ui",
(...skipping 16 matching lines...) Expand all
34 ], 30 ],
35 "skip_compilation": [ 31 "skip_compilation": [
36 "acorn/acorn.js", 32 "acorn/acorn.js",
37 "../cm_web_modes/css.js", 33 "../cm_web_modes/css.js",
38 "../cm_web_modes/javascript.js", 34 "../cm_web_modes/javascript.js",
39 "../cm_web_modes/xml.js", 35 "../cm_web_modes/xml.js",
40 "../cm_web_modes/htmlmixed.js", 36 "../cm_web_modes/htmlmixed.js",
41 "../cm_web_modes/htmlembedded.js" 37 "../cm_web_modes/htmlembedded.js"
42 ] 38 ]
43 } 39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698