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

Side by Side Diff: Source/devtools/front_end/modules.js

Issue 211003002: DevTools: rename SourceEditor to SourceView, make entire SourcesPanel a drop target. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: For landing Created 6 years, 9 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
« no previous file with comments | « Source/devtools/front_end/Tests.js ('k') | Source/devtools/front_end/sourcesPanel.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ];
OLDNEW
« no previous file with comments | « Source/devtools/front_end/Tests.js ('k') | Source/devtools/front_end/sourcesPanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698