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

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

Issue 2708413003: DevTools: make disable javascript setting temporary (Closed)
Patch Set: default global Created 3 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
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@Common.AppProvider", 4 "type": "@Common.AppProvider",
5 "className": "Main.SimpleAppProvider", 5 "className": "Main.SimpleAppProvider",
6 "order": 10 6 "order": 10
7 }, 7 },
8 { 8 {
9 "type": "@UI.ContextMenu.Provider", 9 "type": "@UI.ContextMenu.Provider",
10 "contextTypes": [ 10 "contextTypes": [
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 "title": "Enable cache" 244 "title": "Enable cache"
245 } 245 }
246 ] 246 ]
247 }, 247 },
248 { 248 {
249 "type": "setting", 249 "type": "setting",
250 "category": "Debugger", 250 "category": "Debugger",
251 "title": "Disable JavaScript", 251 "title": "Disable JavaScript",
252 "settingName": "javaScriptDisabled", 252 "settingName": "javaScriptDisabled",
253 "settingType": "boolean", 253 "settingType": "boolean",
254 "storageType": "session",
254 "order": 1, 255 "order": 1,
255 "defaultValue": false, 256 "defaultValue": false,
256 "options": [ 257 "options": [
257 { 258 {
258 "value": true, 259 "value": true,
259 "title": "Disable JavaScript" 260 "title": "Disable JavaScript"
260 }, 261 },
261 { 262 {
262 "value": false, 263 "value": false,
263 "title": "Enable JavaScript" 264 "title": "Enable JavaScript"
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 "ExecutionContextSelector.js", 447 "ExecutionContextSelector.js",
447 "Main.js" 448 "Main.js"
448 ], 449 ],
449 "resources": [ 450 "resources": [
450 "errorWarningCounter.css", 451 "errorWarningCounter.css",
451 "remoteDebuggingTerminatedScreen.css", 452 "remoteDebuggingTerminatedScreen.css",
452 "renderingOptions.css", 453 "renderingOptions.css",
453 "targetCrashedScreen.css" 454 "targetCrashedScreen.css"
454 ] 455 ]
455 } 456 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698