OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * | 10 * |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 { | 43 { |
44 type: "@WebInspector.ContextMenu.Provider", | 44 type: "@WebInspector.ContextMenu.Provider", |
45 contextTypes: ["WebInspector.RemoteObject", "WebInspector.DOMNod
e"], | 45 contextTypes: ["WebInspector.RemoteObject", "WebInspector.DOMNod
e"], |
46 className: "WebInspector.ElementsPanel.ContextMenuProvider" | 46 className: "WebInspector.ElementsPanel.ContextMenuProvider" |
47 }, | 47 }, |
48 { | 48 { |
49 type: "drawer-view", | 49 type: "drawer-view", |
50 name: "emulation", | 50 name: "emulation", |
51 title: "Emulation", | 51 title: "Emulation", |
52 order: "10", | 52 order: "10", |
53 setting: "showEmulationViewInDrawer", | |
54 className: "WebInspector.OverridesView" | 53 className: "WebInspector.OverridesView" |
55 }, | 54 }, |
56 { | 55 { |
57 type: "drawer-view", | 56 type: "drawer-view", |
58 name: "rendering", | 57 name: "rendering", |
59 title: "Rendering", | 58 title: "Rendering", |
60 order: "11", | 59 order: "11", |
61 setting: "showRenderingViewInDrawer", | |
62 className: "WebInspector.RenderingOptionsView" | 60 className: "WebInspector.RenderingOptionsView" |
63 }, | 61 }, |
64 { | 62 { |
65 type: "@WebInspector.Renderer", | 63 type: "@WebInspector.Renderer", |
66 contextTypes: ["WebInspector.DOMNode"], | 64 contextTypes: ["WebInspector.DOMNode"], |
67 className: "WebInspector.ElementsTreeOutline.Renderer" | 65 className: "WebInspector.ElementsTreeOutline.Renderer" |
68 }, | 66 }, |
69 { | 67 { |
70 type: "@WebInspector.Revealer", | 68 type: "@WebInspector.Revealer", |
71 contextTypes: ["WebInspector.DOMNode"], | 69 contextTypes: ["WebInspector.DOMNode"], |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 name: "handler-registry", | 295 name: "handler-registry", |
298 extensions: [ | 296 extensions: [ |
299 { | 297 { |
300 type: "@WebInspector.ContextMenu.Provider", | 298 type: "@WebInspector.ContextMenu.Provider", |
301 contextTypes: ["WebInspector.UISourceCode", "WebInspector.Resour
ce", "WebInspector.NetworkRequest", "Node"], | 299 contextTypes: ["WebInspector.UISourceCode", "WebInspector.Resour
ce", "WebInspector.NetworkRequest", "Node"], |
302 className: "WebInspector.HandlerRegistry.ContextMenuProvider" | 300 className: "WebInspector.HandlerRegistry.ContextMenuProvider" |
303 } | 301 } |
304 ] | 302 ] |
305 } | 303 } |
306 ]; | 304 ]; |
OLD | NEW |