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

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

Issue 1264133002: Devtools: [WIP] Implement enhanced devtools extension language APIs Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Modify override dropdown to apply to console completions & transpile Created 5 years, 4 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 12 matching lines...) Expand all
23 ] 23 ]
24 } 24 }
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/xml.js", 34 "../cm/xml.js",
34 "../cm/htmlmixed.js", 35 "../cm/htmlmixed.js",
35 "../cm/htmlembedded.js", 36 "../cm/htmlembedded.js",
36 37
37 "../cm/matchbrackets.js", 38 "../cm/matchbrackets.js",
38 "../cm/closebrackets.js", 39 "../cm/closebrackets.js",
39 "../cm/markselection.js", 40 "../cm/markselection.js",
40 "../cm/comment.js", 41 "../cm/comment.js",
41 "../cm/overlay.js", 42 "../cm/overlay.js",
42 "../cm/activeline.js", 43 "../cm/activeline.js",
43 44
44 "CodeMirrorUtils.js", 45 "CodeMirrorUtils.js",
45 "CodeMirrorDictionary.js", 46 "CodeMirrorDictionary.js",
46 "TextEditorAutocompleteController.js", 47 "TextEditorAutocompleteController.js",
47 "CodeMirrorTextEditor.js", 48 "CodeMirrorTextEditor.js",
48 "FontView.js", 49 "FontView.js",
49 "ImageView.js", 50 "ImageView.js",
50 "SourceFrame.js", 51 "SourceFrame.js",
51 "GoToLineDialog.js", 52 "GoToLineDialog.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",
59 "../cm/simple.js",
58 "../cm/xml.js", 60 "../cm/xml.js",
59 "../cm/htmlmixed.js", 61 "../cm/htmlmixed.js",
60 "../cm/htmlembedded.js", 62 "../cm/htmlembedded.js",
61 63
62 "../cm/matchbrackets.js", 64 "../cm/matchbrackets.js",
63 "../cm/closebrackets.js", 65 "../cm/closebrackets.js",
64 "../cm/markselection.js", 66 "../cm/markselection.js",
65 "../cm/comment.js", 67 "../cm/comment.js",
66 "../cm/overlay.js", 68 "../cm/overlay.js",
67 "../cm/activeline.js" 69 "../cm/activeline.js"
68 ], 70 ],
69 "resources": [ 71 "resources": [
70 "../cm/codemirror.css", 72 "../cm/codemirror.css",
71 "cmdevtools.css", 73 "cmdevtools.css",
72 "fontView.css", 74 "fontView.css",
73 "imageView.css", 75 "imageView.css",
74 "resourceSourceFrame.css" 76 "resourceSourceFrame.css"
75 ] 77 ]
76 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698