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

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

Issue 25735003: Add text autosizing override in the inspector. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix typeo Created 7 years, 2 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/Settings.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 "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 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 }, 438 },
439 { 439 {
440 "name": "setEmulatedMedia", 440 "name": "setEmulatedMedia",
441 "parameters": [ 441 "parameters": [
442 { "name": "media", "type": "string", "description": "Media t ype to emulate. Empty string disables the override." } 442 { "name": "media", "type": "string", "description": "Media t ype to emulate. Empty string disables the override." }
443 ], 443 ],
444 "description": "Emulates the given media for CSS media queries." , 444 "description": "Emulates the given media for CSS media queries." ,
445 "hidden": true 445 "hidden": true
446 }, 446 },
447 { 447 {
448 "name": "setTextAutosizingOverride",
449 "description": "Overrides the text autosizing feature.",
450 "parameters": [
451 { "name": "enabled", "type": "boolean", "description": "True for enabling the text autosizing feature." }
452 ],
453 "hidden": true
454 },
455 {
456 "name": "clearTextAutosizingOverride",
457 "description": "Clears the overridden text autosizing value."
458 },
459 {
448 "name": "captureScreenshot", 460 "name": "captureScreenshot",
449 "description": "Capture page screenshot.", 461 "description": "Capture page screenshot.",
450 "parameters": [ 462 "parameters": [
451 { "name": "format", "type": "string", "optional": true, "enu m": ["jpeg", "png"], "description": "Image compression format." }, 463 { "name": "format", "type": "string", "optional": true, "enu m": ["jpeg", "png"], "description": "Image compression format." },
452 { "name": "quality", "type": "integer", "hidden": true, "opt ional": true, "description": "Compression quality from range [0..100]." }, 464 { "name": "quality", "type": "integer", "hidden": true, "opt ional": true, "description": "Compression quality from range [0..100]." },
453 { "name": "maxWidth", "type": "integer", "hidden": true, "op tional": true, "description": "Maximum screenshot width." }, 465 { "name": "maxWidth", "type": "integer", "hidden": true, "op tional": true, "description": "Maximum screenshot width." },
454 { "name": "maxHeight", "type": "integer", "hidden": true, "o ptional": true, "description": "Maximum screenshot height." } 466 { "name": "maxHeight", "type": "integer", "hidden": true, "o ptional": true, "description": "Maximum screenshot height." }
455 ], 467 ],
456 "returns": [ 468 "returns": [
457 { "name": "data", "type": "string", "description": "Base64-e ncoded image data (PNG)." }, 469 { "name": "data", "type": "string", "description": "Base64-e ncoded image data (PNG)." },
(...skipping 3594 matching lines...) Expand 10 before | Expand all | Expand 10 after
4052 "parameters": [ 4064 "parameters": [
4053 { "name": "value", "type": "array", "items": { "type": "obje ct" } } 4065 { "name": "value", "type": "array", "items": { "type": "obje ct" } }
4054 ] 4066 ]
4055 }, 4067 },
4056 { 4068 {
4057 "name": "tracingComplete" 4069 "name": "tracingComplete"
4058 } 4070 }
4059 ] 4071 ]
4060 }] 4072 }]
4061 } 4073 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/Settings.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698