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

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

Issue 2271683003: DevTools: Move CodeMirrorTextEditor into text_editor module (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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": "setting",
13 "category": "Sources",
14 "title": "Default indentation:",
15 "settingName": "textEditorIndent",
16 "settingType": "enum",
17 "defaultValue": " ",
18 "options": [
19 { "title": "Set indentation to 2 spaces", "text": "2 spaces", "v alue": " " },
20 { "title": "Set indentation to 4 spaces", "text": "4 spaces", "v alue": " " },
21 { "title": "Set indentation to 8 spaces", "text": "8 spaces", "v alue": " " },
22 { "title": "Set indentation to tab character", "text": "Tab char acter", "value": "\t" }
23 ]
24 } 10 }
25 ], 11 ],
26 "dependencies": [ 12 "dependencies": [
27 "components" 13 "components"
28 ], 14 ],
29 "scripts": [ 15 "scripts": [
30 "../cm/codemirror.js", 16 "../cm/codemirror.js",
31 "../cm/css.js", 17 "../cm/css.js",
32 "../cm/javascript.js", 18 "../cm/javascript.js",
33 "../cm/simple.js", 19 "../cm/simple.js",
34 "../cm/xml.js", 20 "../cm/xml.js",
35 "../cm/multiplex.js", 21 "../cm/multiplex.js",
36 "../cm/htmlmixed.js", 22 "../cm/htmlmixed.js",
37 "../cm/htmlembedded.js", 23 "../cm/htmlembedded.js",
38
39 "../cm/matchbrackets.js", 24 "../cm/matchbrackets.js",
40 "../cm/closebrackets.js", 25 "../cm/closebrackets.js",
41 "../cm/markselection.js", 26 "../cm/markselection.js",
42 "../cm/comment.js", 27 "../cm/comment.js",
43 "../cm/overlay.js", 28 "../cm/overlay.js",
44 "../cm/activeline.js", 29 "../cm/activeline.js",
45
46 "CodeMirrorUtils.js", 30 "CodeMirrorUtils.js",
47 "TextEditorAutocompleteController.js", 31 "TextEditorAutocompleteController.js",
48 "CodeMirrorTextEditor.js", 32 "CodeMirrorTextEditor.js"
49 "SourcesTextEditor.js",
50 "FontView.js",
51 "ImageView.js",
52 "SourceFrame.js",
53 "ResourceSourceFrame.js"
54 ], 33 ],
55 "skip_compilation": [ 34 "skip_compilation": [
56 "../cm/codemirror.js", 35 "../cm/codemirror.js",
57 "../cm/css.js", 36 "../cm/css.js",
58 "../cm/javascript.js", 37 "../cm/javascript.js",
59 "../cm/simple.js", 38 "../cm/simple.js",
60 "../cm/xml.js", 39 "../cm/xml.js",
61 "../cm/multiplex.js", 40 "../cm/multiplex.js",
62 "../cm/htmlmixed.js", 41 "../cm/htmlmixed.js",
63 "../cm/htmlembedded.js", 42 "../cm/htmlembedded.js",
64
65 "../cm/matchbrackets.js", 43 "../cm/matchbrackets.js",
66 "../cm/closebrackets.js", 44 "../cm/closebrackets.js",
67 "../cm/markselection.js", 45 "../cm/markselection.js",
68 "../cm/comment.js", 46 "../cm/comment.js",
69 "../cm/overlay.js", 47 "../cm/overlay.js",
70 "../cm/activeline.js" 48 "../cm/activeline.js"
71 ], 49 ],
72 "resources": [ 50 "resources": [
73 "../cm/codemirror.css", 51 "../cm/codemirror.css",
74 "cmdevtools.css", 52 "cmdevtools.css"
75 "fontView.css",
76 "imageView.css"
77 ] 53 ]
78 } 54 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698