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

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

Issue 2281703002: DevTools: Create TextEditor Interface around CodeMirrorTextEditor (Closed)
Patch Set: Remove accidental devtools.gypi Created 4 years, 3 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", 4 "type": "@WebInspector.InplaceEditor",
5 "className": "WebInspector.CodeMirrorUtils" 5 "className": "WebInspector.CodeMirrorUtils"
6 }, 6 },
7 { 7 {
8 "type": "@WebInspector.TokenizerFactory", 8 "type": "@WebInspector.TokenizerFactory",
9 "className": "WebInspector.CodeMirrorUtils.TokenizerFactory" 9 "className": "WebInspector.CodeMirrorUtils.TokenizerFactory"
10 },
11 {
12 "type": "@WebInspector.TextEditorFactory",
13 "className": "WebInspector.CodeMirrorTextEditorFactory"
10 } 14 }
11 ], 15 ],
12 "dependencies": [ 16 "dependencies": [
13 "components" 17 "components"
14 ], 18 ],
15 "scripts": [ 19 "scripts": [
16 "../cm/codemirror.js", 20 "../cm/codemirror.js",
17 "../cm/css.js", 21 "../cm/css.js",
18 "../cm/javascript.js", 22 "../cm/javascript.js",
19 "../cm/simple.js", 23 "../cm/simple.js",
(...skipping 25 matching lines...) Expand all
45 "../cm/markselection.js", 49 "../cm/markselection.js",
46 "../cm/comment.js", 50 "../cm/comment.js",
47 "../cm/overlay.js", 51 "../cm/overlay.js",
48 "../cm/activeline.js" 52 "../cm/activeline.js"
49 ], 53 ],
50 "resources": [ 54 "resources": [
51 "../cm/codemirror.css", 55 "../cm/codemirror.css",
52 "cmdevtools.css" 56 "cmdevtools.css"
53 ] 57 ]
54 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698