| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |