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

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

Issue 1875273002: [DevTools] Introduce a setting for console autocomplete from history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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.PanelFactory", 4 "type": "@WebInspector.PanelFactory",
5 "name": "console", 5 "name": "console",
6 "title": "Console", 6 "title": "Console",
7 "order": 20, 7 "order": 20,
8 "className": "WebInspector.ConsolePanelFactory" 8 "className": "WebInspector.ConsolePanelFactory"
9 }, 9 },
10 { 10 {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 "type": "setting", 91 "type": "setting",
92 "category": "Console", 92 "category": "Console",
93 "title": "Show timestamps", 93 "title": "Show timestamps",
94 "settingName": "consoleTimestampsEnabled", 94 "settingName": "consoleTimestampsEnabled",
95 "settingType": "boolean", 95 "settingType": "boolean",
96 "defaultValue": false, 96 "defaultValue": false,
97 "options": [ 97 "options": [
98 { "value": true, "title": "Show timestamps" }, 98 { "value": true, "title": "Show timestamps" },
99 { "value": false, "title": "Hide timestamps" } 99 { "value": false, "title": "Hide timestamps" }
100 ] 100 ]
101 },
102 {
103 "type": "setting",
104 "category": "Console",
105 "title": "Autocomplete from history",
106 "settingName": "consoleHistoryAutocomplete",
107 "settingType": "boolean",
108 "defaultValue": true,
109 "options": [
110 { "value": true, "title": "Autocomplete from history" },
111 { "value": false, "title": "Do not autocomplete from history" }
112 ]
101 } 113 }
102 ], 114 ],
103 "dependencies": [ 115 "dependencies": [
104 "components", "ui_lazy" 116 "components", "ui_lazy"
105 ], 117 ],
106 "scripts": [ 118 "scripts": [
107 "ConsoleViewMessage.js", 119 "ConsoleViewMessage.js",
108 "ConsoleView.js", 120 "ConsoleView.js",
109 "ConsolePanel.js" 121 "ConsolePanel.js"
110 ], 122 ],
111 "resources": [ 123 "resources": [
112 "consoleView.css" 124 "consoleView.css"
113 ] 125 ]
114 } 126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698