OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 [ | 5 [ |
6 { | 6 { |
7 "namespace": "tabs", | 7 "namespace": "tabs", |
8 "dependencies": [ "extension", "windows" ], | 8 "dependencies": [ "extension", "windows" ], |
9 "types": [ | 9 "types": [ |
10 { | 10 { |
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 }, | 715 }, |
716 "url": { | 716 "url": { |
717 "type": "string", | 717 "type": "string", |
718 "optional": true, | 718 "optional": true, |
719 "description": "The tab's URL if it has changed." | 719 "description": "The tab's URL if it has changed." |
720 }, | 720 }, |
721 "pinned": { | 721 "pinned": { |
722 "type": "boolean", | 722 "type": "boolean", |
723 "optional": true, | 723 "optional": true, |
724 "description": "The tab's new pinned state." | 724 "description": "The tab's new pinned state." |
| 725 }, |
| 726 "favIconUrl": { |
| 727 "type": "string", |
| 728 "optional": true, |
| 729 "description": "The tab's new favicon URL." |
725 } | 730 } |
726 } | 731 } |
727 }, | 732 }, |
728 { | 733 { |
729 "$ref": "Tab", | 734 "$ref": "Tab", |
730 "name": "tab", | 735 "name": "tab", |
731 "description": "Gives the state of the tab that was updated." | 736 "description": "Gives the state of the tab that was updated." |
732 } | 737 } |
733 ] | 738 ] |
734 }, | 739 }, |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
924 "type": "function", | 929 "type": "function", |
925 "description": "Fired when a tab is replaced with another tab due to pre
rendering or instant.", | 930 "description": "Fired when a tab is replaced with another tab due to pre
rendering or instant.", |
926 "parameters": [ | 931 "parameters": [ |
927 {"type": "integer", "name": "addedTabId", "minimum": 0}, | 932 {"type": "integer", "name": "addedTabId", "minimum": 0}, |
928 {"type": "integer", "name": "removedTabId", "minimum": 0} | 933 {"type": "integer", "name": "removedTabId", "minimum": 0} |
929 ] | 934 ] |
930 } | 935 } |
931 ] | 936 ] |
932 } | 937 } |
933 ] | 938 ] |
OLD | NEW |