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

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

Issue 1892303002: Merge to 2661 "[DevTools] Introduce a setting for console autocomplete from history." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2661
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 "settingType": "boolean", 78 "settingType": "boolean",
79 "defaultValue": false 79 "defaultValue": false
80 }, 80 },
81 { 81 {
82 "type": "setting", 82 "type": "setting",
83 "category": "Console", 83 "category": "Console",
84 "title": "Show timestamps", 84 "title": "Show timestamps",
85 "settingName": "consoleTimestampsEnabled", 85 "settingName": "consoleTimestampsEnabled",
86 "settingType": "boolean", 86 "settingType": "boolean",
87 "defaultValue": false 87 "defaultValue": false
88 },
89 {
90 "type": "setting",
91 "category": "Console",
92 "title": "Autocomplete from history",
93 "settingName": "consoleHistoryAutocomplete",
94 "settingType": "boolean",
95 "defaultValue": true
88 } 96 }
89 ], 97 ],
90 "dependencies": [ 98 "dependencies": [
91 "components", "ui_lazy" 99 "components", "ui_lazy"
92 ], 100 ],
93 "scripts": [ 101 "scripts": [
94 "ConsoleViewMessage.js", 102 "ConsoleViewMessage.js",
95 "ConsoleView.js", 103 "ConsoleView.js",
96 "ConsolePanel.js" 104 "ConsolePanel.js"
97 ], 105 ],
98 "resources": [ 106 "resources": [
99 "consoleView.css" 107 "consoleView.css"
100 ] 108 ]
101 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698