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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 { | 140 { |
141 type: "@WebInspector.DrawerEditor", | 141 type: "@WebInspector.DrawerEditor", |
142 className: "WebInspector.SourcesPanel.DrawerEditor" | 142 className: "WebInspector.SourcesPanel.DrawerEditor" |
143 }, | 143 }, |
144 { | 144 { |
145 type: "@WebInspector.Revealer", | 145 type: "@WebInspector.Revealer", |
146 contextTypes: ["WebInspector.UILocation"], | 146 contextTypes: ["WebInspector.UILocation"], |
147 className: "WebInspector.SourcesPanel.UILocationRevealer" | 147 className: "WebInspector.SourcesPanel.UILocationRevealer" |
148 }, | 148 }, |
149 { | 149 { |
150 type: "@WebInspector.SourcesPanel.EditorAction", | 150 type: "@WebInspector.SourcesEditor.EditorAction", |
151 className: "WebInspector.InplaceFormatterEditorAction" | 151 className: "WebInspector.InplaceFormatterEditorAction" |
152 }, | 152 }, |
153 { | 153 { |
154 type: "@WebInspector.SourcesPanel.EditorAction", | 154 type: "@WebInspector.SourcesEditor.EditorAction", |
155 className: "WebInspector.ScriptFormatterEditorAction" | 155 className: "WebInspector.ScriptFormatterEditorAction" |
156 }, | 156 }, |
157 { | 157 { |
158 type: "navigator-view", | 158 type: "navigator-view", |
159 name: "sources", | 159 name: "sources", |
160 title: "Sources", | 160 title: "Sources", |
161 order: 1, | 161 order: 1, |
162 className: "WebInspector.SourcesNavigatorView" | 162 className: "WebInspector.SourcesNavigatorView" |
163 }, | 163 }, |
164 { | 164 { |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 name: "handler-registry", | 297 name: "handler-registry", |
298 extensions: [ | 298 extensions: [ |
299 { | 299 { |
300 type: "@WebInspector.ContextMenu.Provider", | 300 type: "@WebInspector.ContextMenu.Provider", |
301 contextTypes: ["WebInspector.UISourceCode", "WebInspector.Resour
ce", "WebInspector.NetworkRequest", "Node"], | 301 contextTypes: ["WebInspector.UISourceCode", "WebInspector.Resour
ce", "WebInspector.NetworkRequest", "Node"], |
302 className: "WebInspector.HandlerRegistry.ContextMenuProvider" | 302 className: "WebInspector.HandlerRegistry.ContextMenuProvider" |
303 } | 303 } |
304 ] | 304 ] |
305 } | 305 } |
306 ]; | 306 ]; |
OLD | NEW |