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

Side by Side Diff: third_party/WebKit/Source/devtools/protocol.json

Issue 1450133003: [DevTools] Promote Device Mode v2 to default experiments. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tweaks Created 5 years, 1 month 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 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications.", 10 "description": "Enables inspector domain notifications.",
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 "name": "handleJavaScriptDialog", 436 "name": "handleJavaScriptDialog",
437 "description": "Accepts or dismisses a JavaScript initiated dial og (alert, confirm, prompt, or onbeforeunload).", 437 "description": "Accepts or dismisses a JavaScript initiated dial og (alert, confirm, prompt, or onbeforeunload).",
438 "parameters": [ 438 "parameters": [
439 { "name": "accept", "type": "boolean", "description": "Wheth er to accept or dismiss the dialog." }, 439 { "name": "accept", "type": "boolean", "description": "Wheth er to accept or dismiss the dialog." },
440 { "name": "promptText", "type": "string", "optional": true, "description": "The text to enter into the dialog prompt before accepting. Used only if this is a prompt dialog." } 440 { "name": "promptText", "type": "string", "optional": true, "description": "The text to enter into the dialog prompt before accepting. Used only if this is a prompt dialog." }
441 ], 441 ],
442 "hidden": true, 442 "hidden": true,
443 "handlers": ["browser"] 443 "handlers": ["browser"]
444 }, 444 },
445 { 445 {
446 "name": "setShowViewportSizeOnResize",
447 "description": "Paints viewport size upon main frame resize.",
448 "parameters": [
449 { "name": "show", "type": "boolean", "description": "Whether to paint size or not." },
450 { "name": "showGrid", "type": "boolean", "optional": true, " description": "Whether to paint grid as well." }
451 ],
452 "hidden": true
453 },
454 {
455 "name": "setColorPickerEnabled", 446 "name": "setColorPickerEnabled",
456 "parameters": [ 447 "parameters": [
457 { "name": "enabled", "type": "boolean", "description": "Show s / hides color picker" } 448 { "name": "enabled", "type": "boolean", "description": "Show s / hides color picker" }
458 ], 449 ],
459 "description": "Shows / hides color picker", 450 "description": "Shows / hides color picker",
460 "hidden": true, 451 "hidden": true,
461 "handlers": ["browser"] 452 "handlers": ["browser"]
462 }, 453 },
463 { 454 {
464 "name": "setOverlayMessage", 455 "name": "setOverlayMessage",
(...skipping 4844 matching lines...) Expand 10 before | Expand all | Expand 10 after
5309 ], 5300 ],
5310 "returns": [ 5301 "returns": [
5311 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5302 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5312 ], 5303 ],
5313 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5304 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5314 "hidden": true 5305 "hidden": true
5315 } 5306 }
5316 ] 5307 ]
5317 }] 5308 }]
5318 } 5309 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/toolbar.css ('k') | third_party/WebKit/Source/web/InspectorOverlay.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698