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

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

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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": "@UI.InplaceEditor",
5 "className": "WebInspector.CodeMirrorUtils" 5 "className": "TextEditor.CodeMirrorUtils"
6 }, 6 },
7 { 7 {
8 "type": "@WebInspector.TokenizerFactory", 8 "type": "@Common.TokenizerFactory",
9 "className": "WebInspector.CodeMirrorUtils.TokenizerFactory" 9 "className": "TextEditor.CodeMirrorUtils.TokenizerFactory"
10 }, 10 },
11 { 11 {
12 "type": "@WebInspector.TextEditorFactory", 12 "type": "@UI.TextEditorFactory",
13 "className": "WebInspector.CodeMirrorTextEditorFactory" 13 "className": "TextEditor.CodeMirrorTextEditorFactory"
14 } 14 }
15 ], 15 ],
16 "dependencies": [ 16 "dependencies": [
17 "ui", 17 "ui",
18 "platform", 18 "platform",
19 "common" 19 "common"
20 ], 20 ],
21 "scripts": [ 21 "scripts": [
22 "../cm/codemirror.js", 22 "../cm/codemirror.js",
23 "../cm/css.js", 23 "../cm/css.js",
(...skipping 27 matching lines...) Expand all
51 "../cm/markselection.js", 51 "../cm/markselection.js",
52 "../cm/comment.js", 52 "../cm/comment.js",
53 "../cm/overlay.js", 53 "../cm/overlay.js",
54 "../cm/activeline.js" 54 "../cm/activeline.js"
55 ], 55 ],
56 "resources": [ 56 "resources": [
57 "../cm/codemirror.css", 57 "../cm/codemirror.css",
58 "cmdevtools.css" 58 "cmdevtools.css"
59 ] 59 ]
60 } 60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698