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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/console/module.json
diff --git a/third_party/WebKit/Source/devtools/front_end/console/module.json b/third_party/WebKit/Source/devtools/front_end/console/module.json
index 2cdde5847b4e8e319184ca0be2168e5147cf3b12..fc1657eb2cdbb5048f8b513abcfaeacec6c4c4a2 100644
--- a/third_party/WebKit/Source/devtools/front_end/console/module.json
+++ b/third_party/WebKit/Source/devtools/front_end/console/module.json
@@ -98,6 +98,18 @@
{ "value": true, "title": "Show timestamps" },
{ "value": false, "title": "Hide timestamps" }
]
+ },
+ {
+ "type": "setting",
+ "category": "Console",
+ "title": "Autocomplete from history",
+ "settingName": "consoleHistoryAutocomplete",
+ "settingType": "boolean",
+ "defaultValue": true,
+ "options": [
+ { "value": true, "title": "Autocomplete from history" },
+ { "value": false, "title": "Do not autocomplete from history" }
+ ]
}
],
"dependencies": [

Powered by Google App Engine
This is Rietveld 408576698