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

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

Issue 2897033005: DevTools: introduce setting to filter only user messages from console API (Closed)
Patch Set: ac Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 f0707df3191e934cc2d405f0885967fa9c3fc91b..8dc0d5a7930b5610f1a58da71d7ded469e99a52c 100644
--- a/third_party/WebKit/Source/devtools/front_end/console/module.json
+++ b/third_party/WebKit/Source/devtools/front_end/console/module.json
@@ -80,6 +80,44 @@
{
"type": "setting",
"category": "Console",
+ "title": "Selected context only",
+ "settingName": "selectedContextFilterEnabled",
+ "settingType": "boolean",
+ "storageType": "session",
+ "defaultValue": false,
+ "options": [
+ {
+ "value": true,
+ "title": "Only show messages from the current context (top, iframe, worker, extension)"
+ },
+ {
+ "value": false,
+ "title": "Show messages from all contexts"
+ }
+ ]
+ },
+ {
+ "type": "setting",
+ "category": "Console",
+ "title": "User messages only",
+ "settingName": "consoleAPIFilterEnabled",
+ "settingType": "boolean",
+ "storageType": "session",
+ "defaultValue": false,
+ "options": [
+ {
+ "value": true,
+ "title": "Only show messages from console API methods"
+ },
+ {
+ "value": false,
+ "title": "Show messages from all sources"
+ }
+ ]
+ },
+ {
+ "type": "setting",
+ "category": "Console",
"title": "Log XMLHttpRequests",
"settingName": "monitoringXHREnabled",
"settingType": "boolean",
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698