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

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

Issue 2166603002: DevTools: roll CodeMirror (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert unnecessary typeIn change Created 4 years, 5 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 }, 10 },
(...skipping 14 matching lines...) Expand all
25 ], 25 ],
26 "dependencies": [ 26 "dependencies": [
27 "components" 27 "components"
28 ], 28 ],
29 "scripts": [ 29 "scripts": [
30 "../cm/codemirror.js", 30 "../cm/codemirror.js",
31 "../cm/css.js", 31 "../cm/css.js",
32 "../cm/javascript.js", 32 "../cm/javascript.js",
33 "../cm/simple.js", 33 "../cm/simple.js",
34 "../cm/xml.js", 34 "../cm/xml.js",
35 "../cm/multiplex.js",
35 "../cm/htmlmixed.js", 36 "../cm/htmlmixed.js",
36 "../cm/htmlembedded.js", 37 "../cm/htmlembedded.js",
37 38
38 "../cm/matchbrackets.js", 39 "../cm/matchbrackets.js",
39 "../cm/closebrackets.js", 40 "../cm/closebrackets.js",
40 "../cm/markselection.js", 41 "../cm/markselection.js",
41 "../cm/comment.js", 42 "../cm/comment.js",
42 "../cm/overlay.js", 43 "../cm/overlay.js",
43 "../cm/activeline.js", 44 "../cm/activeline.js",
44 45
45 "CodeMirrorUtils.js", 46 "CodeMirrorUtils.js",
46 "CodeMirrorDictionary.js", 47 "CodeMirrorDictionary.js",
47 "TextEditorAutocompleteController.js", 48 "TextEditorAutocompleteController.js",
48 "CodeMirrorTextEditor.js", 49 "CodeMirrorTextEditor.js",
49 "FontView.js", 50 "FontView.js",
50 "ImageView.js", 51 "ImageView.js",
51 "SourceFrame.js", 52 "SourceFrame.js",
52 "ResourceSourceFrame.js" 53 "ResourceSourceFrame.js"
53 ], 54 ],
54 "skip_compilation": [ 55 "skip_compilation": [
55 "../cm/codemirror.js", 56 "../cm/codemirror.js",
56 "../cm/css.js", 57 "../cm/css.js",
57 "../cm/javascript.js", 58 "../cm/javascript.js",
58 "../cm/simple.js", 59 "../cm/simple.js",
59 "../cm/xml.js", 60 "../cm/xml.js",
61 "../cm/multiplex.js",
60 "../cm/htmlmixed.js", 62 "../cm/htmlmixed.js",
61 "../cm/htmlembedded.js", 63 "../cm/htmlembedded.js",
62 64
63 "../cm/matchbrackets.js", 65 "../cm/matchbrackets.js",
64 "../cm/closebrackets.js", 66 "../cm/closebrackets.js",
65 "../cm/markselection.js", 67 "../cm/markselection.js",
66 "../cm/comment.js", 68 "../cm/comment.js",
67 "../cm/overlay.js", 69 "../cm/overlay.js",
68 "../cm/activeline.js" 70 "../cm/activeline.js"
69 ], 71 ],
70 "resources": [ 72 "resources": [
71 "../cm/codemirror.css", 73 "../cm/codemirror.css",
72 "cmdevtools.css", 74 "cmdevtools.css",
73 "fontView.css", 75 "fontView.css",
74 "imageView.css" 76 "imageView.css"
75 ] 77 ]
76 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698