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

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

Issue 1176343002: DevTools: make toolbar button click targets square (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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.AppProvider", 4 "type": "@WebInspector.AppProvider",
5 "condition": "can_dock", 5 "condition": "can_dock",
6 "className": "WebInspector.AdvancedAppProvider", 6 "className": "WebInspector.AdvancedAppProvider",
7 "order": 0 7 "order": 0
8 }, 8 },
9 { 9 {
10 "type": "@WebInspector.AppProvider", 10 "type": "@WebInspector.AppProvider",
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 }, 151 },
152 { 152 {
153 "type": "@WebInspector.ToolbarItem.Provider", 153 "type": "@WebInspector.ToolbarItem.Provider",
154 "className": "WebInspector.InspectElementModeController.ToggleButton Provider", 154 "className": "WebInspector.InspectElementModeController.ToggleButton Provider",
155 "location": "main-toolbar-left", 155 "location": "main-toolbar-left",
156 "order": 0, 156 "order": 0,
157 "actionId": "main.toggle-element-search" 157 "actionId": "main.toggle-element-search"
158 }, 158 },
159 { 159 {
160 "type": "@WebInspector.ToolbarItem.Provider", 160 "type": "@WebInspector.ToolbarItem.Provider",
161 "className": "WebInspector.Main.WarningErrorCounter", 161 "separator": true,
162 "location": "main-toolbar-left",
163 "order": 100,
dgozman 2015/06/11 16:14:12 100 is for close button. 99?
pfeldman 2015/06/11 16:38:06 These are different toolbars.
164 "actionId": "main.toggle-element-search"
dgozman 2015/06/11 16:14:12 Remove actionId.
pfeldman 2015/06/11 16:38:06 Done.
165 },
166 {
167 "type": "@WebInspector.ToolbarItem.Provider",
168 "className": "WebInspector.InspectorView.ToggleDrawerButtonProvider" ,
162 "order": 1, 169 "order": 1,
163 "location": "main-toolbar-right" 170 "location": "main-toolbar-right"
164 }, 171 },
165 { 172 {
166 "type": "@WebInspector.ToolbarItem.Provider", 173 "type": "@WebInspector.ToolbarItem.Provider",
167 "className": "WebInspector.InspectorView.ToggleDrawerButtonProvider" , 174 "className": "WebInspector.Main.WarningErrorCounter",
dgozman 2015/06/11 16:14:11 Why swapped with toggle drawer?
pfeldman 2015/06/11 16:38:06 Done.
168 "order": 2, 175 "order": 2,
169 "location": "main-toolbar-right" 176 "location": "main-toolbar-right"
170 }, 177 },
171 { 178 {
172 "type": "@WebInspector.ToolbarItem.Provider", 179 "type": "@WebInspector.ToolbarItem.Provider",
173 "className": "WebInspector.DockController.ButtonProvider", 180 "separator": true,
174 "order": 4, 181 "order": 3,
175 "location": "main-toolbar-right" 182 "location": "main-toolbar-right"
176 }, 183 },
177 { 184 {
185 "type": "@WebInspector.ToolbarItem.Provider",
186 "className": "WebInspector.DockController.ButtonProvider",
187 "order": 5,
188 "location": "main-toolbar-right"
189 },
190 {
191 "type": "@WebInspector.ToolbarItem.Provider",
192 "separator": true,
193 "order": 90,
194 "location": "main-toolbar-right"
195 },
196 {
178 "type": "@WebInspector.ToolbarItem.Provider", 197 "type": "@WebInspector.ToolbarItem.Provider",
179 "className": "WebInspector.DockController.CloseButtonProvider", 198 "className": "WebInspector.DockController.CloseButtonProvider",
180 "order": 100, 199 "order": 100,
181 "location": "main-toolbar-right" 200 "location": "main-toolbar-right"
182 }, 201 },
183 { 202 {
184 "type": "setting", 203 "type": "setting",
185 "category": "", 204 "category": "",
186 "title": "Disable cache (while DevTools is open)", 205 "title": "Disable cache (while DevTools is open)",
187 "settingName": "cacheDisabled", 206 "settingName": "cacheDisabled",
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 "Tests.js", 308 "Tests.js",
290 "OverlayController.js", 309 "OverlayController.js",
291 "Main.js" 310 "Main.js"
292 ], 311 ],
293 "skip_compilation": [ 312 "skip_compilation": [
294 "Tests.js" 313 "Tests.js"
295 ], 314 ],
296 "resources": [ 315 "resources": [
297 ] 316 ]
298 } 317 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698