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

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

Issue 322483004: DevTools: Fix remote device debugging (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Make "left" the default screencast location value Created 6 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
« no previous file with comments | « Source/devtools/front_end/main/ScreencastApp.js ('k') | no next file » | 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 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.ContextMenu.Provider", 4 "type": "@WebInspector.ContextMenu.Provider",
5 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.Resource ", "WebInspector.NetworkRequest", "Node"], 5 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.Resource ", "WebInspector.NetworkRequest", "Node"],
6 "className": "WebInspector.HandlerRegistry.ContextMenuProvider" 6 "className": "WebInspector.HandlerRegistry.ContextMenuProvider"
7 }, 7 },
8 { 8 {
9 "type": "@WebInspector.ActionDelegate", 9 "type": "@WebInspector.ActionDelegate",
10 "actionId": "main.reload", 10 "actionId": "main.reload",
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 "type": "@WebInspector.StatusBarButton.Provider", 125 "type": "@WebInspector.StatusBarButton.Provider",
126 "className": "WebInspector.AdvancedApp.ResponsiveDesignButtonProvide r", 126 "className": "WebInspector.AdvancedApp.ResponsiveDesignButtonProvide r",
127 "location": "toolbar-left" 127 "location": "toolbar-left"
128 }, 128 },
129 { 129 {
130 "type": "@WebInspector.StatusBarButton.Provider", 130 "type": "@WebInspector.StatusBarButton.Provider",
131 "className": "WebInspector.DockController.ButtonProvider", 131 "className": "WebInspector.DockController.ButtonProvider",
132 "location": "toolbar-right" 132 "location": "toolbar-right"
133 }, 133 },
134 { 134 {
135 "type": "@WebInspector.StatusBarButton.Provider",
136 "className": "WebInspector.ScreencastApp.StatusBarButtonProvider",
137 "location": "toolbar-right"
138 },
139 {
135 "type": "ui-setting", 140 "type": "ui-setting",
136 "title": "Disable cache (while DevTools is open)", 141 "title": "Disable cache (while DevTools is open)",
137 "settingName": "cacheDisabled", 142 "settingName": "cacheDisabled",
138 "settingType": "checkbox" 143 "settingType": "checkbox"
139 }, 144 },
140 { 145 {
141 "type": "ui-setting", 146 "type": "ui-setting",
142 "section": "Appearance", 147 "section": "Appearance",
143 "title": "Split panels vertically when docked to right", 148 "title": "Split panels vertically when docked to right",
144 "settingName": "splitVerticallyWhenDockedToRight", 149 "settingName": "splitVerticallyWhenDockedToRight",
145 "settingType": "checkbox" 150 "settingType": "checkbox"
146 }, 151 },
147 { 152 {
148 "type": "ui-setting", 153 "type": "ui-setting",
149 "section": "Appearance", 154 "section": "Appearance",
150 "settingType": "custom", 155 "settingType": "custom",
151 "className": "WebInspector.Main.ShortcutPanelSwitchSettingDelegate" 156 "className": "WebInspector.Main.ShortcutPanelSwitchSettingDelegate"
152 }, 157 },
153 { 158 {
154 "type": "ui-setting", 159 "type": "ui-setting",
155 "section": "Extensions", 160 "section": "Extensions",
156 "settingType": "custom", 161 "settingType": "custom",
157 "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSetting Delegate" 162 "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSetting Delegate"
158 } 163 }
159 ] 164 ]
160 } 165 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/main/ScreencastApp.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698