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

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

Issue 648263002: DevTools: [Console] checkbox to hide network messages (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix eustas comments Created 6 years, 2 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 | « 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": "@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 14 matching lines...) Expand all
25 "className": "WebInspector.ConsoleView.ShowConsoleActionDelegate", 25 "className": "WebInspector.ConsoleView.ShowConsoleActionDelegate",
26 "bindings": [ 26 "bindings": [
27 { 27 {
28 "shortcut": "Ctrl+`" 28 "shortcut": "Ctrl+`"
29 } 29 }
30 ] 30 ]
31 }, 31 },
32 { 32 {
33 "type": "ui-setting", 33 "type": "ui-setting",
34 "section": "Console", 34 "section": "Console",
35 "title": "Hide network messages",
36 "settingName": "hideNetworkMessages",
37 "settingType": "checkbox"
38 },
39 {
40 "type": "ui-setting",
41 "section": "Console",
35 "title": "Log XMLHttpRequests", 42 "title": "Log XMLHttpRequests",
36 "settingName": "monitoringXHREnabled", 43 "settingName": "monitoringXHREnabled",
37 "settingType": "checkbox" 44 "settingType": "checkbox"
38 }, 45 },
39 { 46 {
40 "type": "ui-setting", 47 "type": "ui-setting",
41 "section": "Console", 48 "section": "Console",
42 "title": "Preserve log upon navigation", 49 "title": "Preserve log upon navigation",
43 "settingName": "preserveConsoleLog", 50 "settingName": "preserveConsoleLog",
44 "settingType": "checkbox" 51 "settingType": "checkbox"
45 }, 52 },
46 { 53 {
47 "type": "ui-setting", 54 "type": "ui-setting",
48 "section": "Console", 55 "section": "Console",
49 "title": "Show timestamps", 56 "title": "Show timestamps",
50 "settingName": "consoleTimestampsEnabled", 57 "settingName": "consoleTimestampsEnabled",
51 "settingType": "checkbox" 58 "settingType": "checkbox"
52 } 59 }
53 ], 60 ],
54 "dependencies": [ 61 "dependencies": [
55 "components" 62 "components"
56 ], 63 ],
57 "scripts": [ 64 "scripts": [
58 "ConsoleViewMessage.js", 65 "ConsoleViewMessage.js",
59 "ConsoleView.js", 66 "ConsoleView.js",
60 "ConsolePanel.js" 67 "ConsolePanel.js"
61 ] 68 ]
62 } 69 }
OLDNEW
« no previous file with comments | « 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