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

Side by Side 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 unified diff | 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 »
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": "view", 4 "type": "view",
5 "location": "panel", 5 "location": "panel",
6 "id": "console", 6 "id": "console",
7 "title": "Console", 7 "title": "Console",
8 "order": 20, 8 "order": 20,
9 "className": "Console.ConsolePanel" 9 "className": "Console.ConsolePanel"
10 }, 10 },
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 }, 73 },
74 { 74 {
75 "value": false, 75 "value": false,
76 "title": "Show network messages" 76 "title": "Show network messages"
77 } 77 }
78 ] 78 ]
79 }, 79 },
80 { 80 {
81 "type": "setting", 81 "type": "setting",
82 "category": "Console", 82 "category": "Console",
83 "title": "Selected context only",
84 "settingName": "selectedContextFilterEnabled",
85 "settingType": "boolean",
86 "storageType": "session",
87 "defaultValue": false,
88 "options": [
89 {
90 "value": true,
91 "title": "Only show messages from the current context (top, iframe, worker, extension)"
92 },
93 {
94 "value": false,
95 "title": "Show messages from all contexts"
96 }
97 ]
98 },
99 {
100 "type": "setting",
101 "category": "Console",
102 "title": "User messages only",
103 "settingName": "consoleAPIFilterEnabled",
104 "settingType": "boolean",
105 "storageType": "session",
106 "defaultValue": false,
107 "options": [
108 {
109 "value": true,
110 "title": "Only show messages from console API methods"
111 },
112 {
113 "value": false,
114 "title": "Show messages from all sources"
115 }
116 ]
117 },
118 {
119 "type": "setting",
120 "category": "Console",
83 "title": "Log XMLHttpRequests", 121 "title": "Log XMLHttpRequests",
84 "settingName": "monitoringXHREnabled", 122 "settingName": "monitoringXHREnabled",
85 "settingType": "boolean", 123 "settingType": "boolean",
86 "defaultValue": false 124 "defaultValue": false
87 }, 125 },
88 { 126 {
89 "type": "setting", 127 "type": "setting",
90 "category": "Console", 128 "category": "Console",
91 "title": "Show timestamps", 129 "title": "Show timestamps",
92 "settingName": "consoleTimestampsEnabled", 130 "settingName": "consoleTimestampsEnabled",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 "ConsolePrompt.js", 174 "ConsolePrompt.js",
137 "ConsoleView.js", 175 "ConsoleView.js",
138 "ConsolePanel.js" 176 "ConsolePanel.js"
139 ], 177 ],
140 "resources": [ 178 "resources": [
141 "consoleContextSelector.css", 179 "consoleContextSelector.css",
142 "consoleContextSelectorButton.css", 180 "consoleContextSelectorButton.css",
143 "consoleView.css" 181 "consoleView.css"
144 ] 182 ]
145 } 183 }
OLDNEW
« 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