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

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

Issue 347583003: DevTools: add emulation toggle button and splash screen. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: For landing Created 6 years, 6 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": "elements", 5 "name": "elements",
6 "title": "Elements", 6 "title": "Elements",
7 "order": 0, 7 "order": 0,
8 "className": "WebInspector.ElementsPanel" 8 "className": "WebInspector.ElementsPanel"
9 }, 9 },
10 { 10 {
(...skipping 24 matching lines...) Expand all
35 "type": "@WebInspector.Revealer", 35 "type": "@WebInspector.Revealer",
36 "contextTypes": ["WebInspector.DOMNode"], 36 "contextTypes": ["WebInspector.DOMNode"],
37 "className": "WebInspector.ElementsPanel.DOMNodeRevealer" 37 "className": "WebInspector.ElementsPanel.DOMNodeRevealer"
38 }, 38 },
39 { 39 {
40 "type": "@WebInspector.Revealer", 40 "type": "@WebInspector.Revealer",
41 "contextTypes": ["WebInspector.RemoteObject"], 41 "contextTypes": ["WebInspector.RemoteObject"],
42 "className": "WebInspector.ElementsPanel.NodeRemoteObjectRevealer" 42 "className": "WebInspector.ElementsPanel.NodeRemoteObjectRevealer"
43 }, 43 },
44 { 44 {
45 "type": "@WebInspector.Revealer",
46 "contextTypes": ["WebInspector.OverridesSupport"],
47 "className": "WebInspector.OverridesView.Revealer"
48 },
49 {
45 "type": "ui-setting", 50 "type": "ui-setting",
46 "section": "Elements", 51 "section": "Elements",
47 "title": "Color format", 52 "title": "Color format",
48 "settingName": "colorFormat", 53 "settingName": "colorFormat",
49 "settingType": "select", 54 "settingType": "select",
50 "options": [ 55 "options": [
51 [ "As authored", "original" ], 56 [ "As authored", "original" ],
52 [ "HEX: #DAC0DE", "hex", true ], 57 [ "HEX: #DAC0DE", "hex", true ],
53 [ "RGB: rgb(128, 255, 255)", "rgb", true ], 58 [ "RGB: rgb(128, 255, 255)", "rgb", true ],
54 [ "HSL: hsl(300, 80%, 90%)", "hsl", true ] 59 [ "HSL: hsl(300, 80%, 90%)", "hsl", true ]
(...skipping 23 matching lines...) Expand all
78 { 83 {
79 "type": "ui-setting", 84 "type": "ui-setting",
80 "section": "Elements", 85 "section": "Elements",
81 "title": "Show rulers", 86 "title": "Show rulers",
82 "settingName": "showMetricsRulers", 87 "settingName": "showMetricsRulers",
83 "settingType": "checkbox" 88 "settingType": "checkbox"
84 } 89 }
85 ], 90 ],
86 "scripts": [ "ElementsPanel.js" ] 91 "scripts": [ "ElementsPanel.js" ]
87 } 92 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/OverridesView.js ('k') | Source/devtools/front_end/inspector.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698