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

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

Issue 396993003: DevTools: get rid of WebInspector.cssModel, use target models instead (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.Panel", 4 "type": "@WebInspector.Panel",
5 "name": "console", 5 "name": "console",
6 "title": "Console", 6 "title": "Console",
7 "order": 20, 7 "order": 20,
8 "className": "WebInspector.ConsolePanel" 8 "className": "WebInspector.ConsolePanel"
9 }, 9 },
10 { 10 {
11 "type": "drawer-view", 11 "type": "drawer-view",
12 "name": "console", 12 "name": "console",
13 "title": "Console", 13 "title": "Console",
14 "order": "0", 14 "order": "0",
15 "className": "WebInspector.ConsolePanel.WrapperView" 15 "className": "WebInspector.ConsolePanel.WrapperView"
16 }, 16 },
17 { 17 {
18 "type": "@WebInspector.Revealer", 18 "type": "@WebInspector.Revealer",
19 "contextTypes": ["WebInspector.ConsoleModel"], 19 "contextTypes": ["WebInspector.Console"],
20 "className": "WebInspector.ConsolePanel.ConsoleRevealer" 20 "className": "WebInspector.ConsolePanel.ConsoleRevealer"
21 }, 21 },
22 { 22 {
23 "type": "@WebInspector.ActionDelegate", 23 "type": "@WebInspector.ActionDelegate",
24 "actionId": "console.show", 24 "actionId": "console.show",
25 "className": "WebInspector.ConsoleView.ShowConsoleActionDelegate", 25 "className": "WebInspector.ConsoleView.ShowConsoleActionDelegate",
26 "bindings": [ 26 "bindings": [
27 { 27 {
28 "shortcut": "Ctrl+`" 28 "shortcut": "Ctrl+`"
29 } 29 }
(...skipping 16 matching lines...) Expand all
46 { 46 {
47 "type": "ui-setting", 47 "type": "ui-setting",
48 "section": "Console", 48 "section": "Console",
49 "title": "Show timestamps", 49 "title": "Show timestamps",
50 "settingName": "consoleTimestampsEnabled", 50 "settingName": "consoleTimestampsEnabled",
51 "settingType": "checkbox" 51 "settingType": "checkbox"
52 } 52 }
53 ], 53 ],
54 "scripts": [ "ConsolePanel.js" ] 54 "scripts": [ "ConsolePanel.js" ]
55 } 55 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/console/ConsoleView.js ('k') | Source/devtools/front_end/elements/MetricsSidebarPane.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698