Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "namespace": "extension", | 3 "namespace": "extension", |
| 4 "unprivileged": true, | 4 "unprivileged": true, |
| 5 "types": [ | 5 "types": [ |
| 6 { | 6 { |
| 7 "id": "MessageSender", | 7 "id": "MessageSender", |
| 8 "type": "object", | 8 "type": "object", |
| 9 "description": "An object containing information about the script contex t that sent a message or request.", | 9 "description": "An object containing information about the script contex t that sent a message or request.", |
| 10 "properties": { | 10 "properties": { |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 496 "name": "onMenuClosed", | 496 "name": "onMenuClosed", |
| 497 "type": "function", | 497 "type": "function", |
| 498 "description": "Fired when a menu is closed.", | 498 "description": "Fired when a menu is closed.", |
| 499 "parameters": [ | 499 "parameters": [ |
| 500 { | 500 { |
| 501 "$ref": "AccessibilityObject", | 501 "$ref": "AccessibilityObject", |
| 502 "name": "menu", | 502 "name": "menu", |
| 503 "description": "Information about the menu that was closed." | 503 "description": "Information about the menu that was closed." |
| 504 } | 504 } |
| 505 ] | 505 ] |
| 506 }, | |
| 507 { | |
| 508 "name": "onVolumeDown", | |
| 509 "type": "function", | |
| 510 "description": "Fired when the volume is down.", | |
|
dmazzoni
2011/08/24 14:49:02
down -> decreased
yoshiki
2011/08/29 09:16:16
This was replaced with onVolumeChange.
On 2011/08
| |
| 511 "parameters": [ | |
| 512 { | |
| 513 "$ref": "AccessibilityObject", | |
|
dmazzoni
2011/08/24 14:49:02
Make this an AccessibilityVolumeInfo explicitly ra
yoshiki
2011/08/29 09:16:16
Done.
| |
| 514 "name": "volume", | |
| 515 "description": "Information about the volume was down." | |
|
dmazzoni
2011/08/24 14:49:02
Information about the current volume level
yoshiki
2011/08/29 09:16:16
Done.
| |
| 516 } | |
| 517 ] | |
| 518 }, | |
| 519 { | |
| 520 "name": "onVolumeUp", | |
| 521 "type": "function", | |
| 522 "description": "Fired when the volume is up.", | |
| 523 "parameters": [ | |
| 524 { | |
| 525 "$ref": "AccessibilityObject", | |
| 526 "name": "volume", | |
| 527 "description": "Information about the volume was up." | |
|
Daniel Erat
2011/08/24 14:52:57
"Information about the volume increasing."
yoshiki
2011/08/29 09:16:16
This was replaced with onVolumeChange.
On 2011/08
| |
| 528 } | |
| 529 ] | |
| 530 }, | |
| 531 { | |
| 532 "name": "onVolumeMute", | |
| 533 "type": "function", | |
| 534 "description": "Fired when the volume is muted.", | |
| 535 "parameters": [ | |
| 536 { | |
| 537 "$ref": "AccessibilityObject", | |
| 538 "name": "volume", | |
| 539 "description": "Information about the volume was muted." | |
|
Daniel Erat
2011/08/24 14:52:57
"Information about the volume being muted."
yoshiki
2011/08/29 09:16:16
Done.
| |
| 540 } | |
| 541 ] | |
| 506 } | 542 } |
| 507 ] | 543 ] |
| 508 }, | 544 }, |
| 509 { | 545 { |
| 510 "namespace": "tts", | 546 "namespace": "tts", |
| 511 "types": [ | 547 "types": [ |
| 512 { | 548 { |
| 513 "id": "TtsEvent", | 549 "id": "TtsEvent", |
| 514 "type": "object", | 550 "type": "object", |
| 515 "description": "An event from the TTS engine to communicate the status o f an utterance.", | 551 "description": "An event from the TTS engine to communicate the status o f an utterance.", |
| (...skipping 7549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 8065 "description": "A string result code. The value is non-empty on success only in tests.", | 8101 "description": "A string result code. The value is non-empty on success only in tests.", |
| 8066 "optional": "true" | 8102 "optional": "true" |
| 8067 } | 8103 } |
| 8068 ] | 8104 ] |
| 8069 } | 8105 } |
| 8070 ] | 8106 ] |
| 8071 } | 8107 } |
| 8072 ] | 8108 ] |
| 8073 } | 8109 } |
| 8074 ] | 8110 ] |
| OLD | NEW |