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