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

Side by Side Diff: chrome/common/extensions/api/tabs.json

Issue 12591008: Trigger a tab updated event if the favicon URL changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove favicon.ico (was committed separately). Created 7 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 | Annotate | Revision Log
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « chrome/browser/extensions/browser_event_router.cc ('k') | chrome/test/data/extensions/api_test/tabs/on_updated/favicon/a.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698