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

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

Issue 6773006: Add enableReferrers and enableHyperlinkAuditing to contentSettings.misc API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 years, 8 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 [ 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 4756 matching lines...) Expand 10 before | Expand all | Expand 10 after
4767 } 4767 }
4768 ] 4768 ]
4769 }, 4769 },
4770 { 4770 {
4771 "namespace": "experimental.contentSettings.misc", 4771 "namespace": "experimental.contentSettings.misc",
4772 "properties": { 4772 "properties": {
4773 "blockThirdPartyCookies": { 4773 "blockThirdPartyCookies": {
4774 "$ref": "Preference", 4774 "$ref": "Preference",
4775 "value": ["blockThirdPartyCookies", {"type": "boolean"}], 4775 "value": ["blockThirdPartyCookies", {"type": "boolean"}],
4776 "description": "Whether third party cookies should be blocked. The value of this preference is of type boolean." 4776 "description": "Whether third party cookies should be blocked. The value of this preference is of type boolean."
4777 },
4778 "enableReferrers": {
4779 "$ref": "Preference",
4780 "value": ["enableReferrers", {"type":"boolean"}],
4781 "description": "Whether referrers should be enabled. The value of this p reference is of type boolean."
4782 },
4783 "enablePing": {
4784 "$ref": "Preference",
4785 "value": ["enablePing", {"type":"boolean"}],
jochen (gone - plz use gerrit) 2011/03/30 08:29:10 I think enabledHyperlinkAuditing would be a better
4786 "description": "Whether to enable hyperlink auditing (\"<a ping>\"). The value of this preference is of type boolean."
4777 } 4787 }
4778 } 4788 }
4779 }, 4789 },
4780 { 4790 {
4781 "namespace": "experimental.debugger", 4791 "namespace": "experimental.debugger",
4782 "functions": [ 4792 "functions": [
4783 { 4793 {
4784 "name": "attach", 4794 "name": "attach",
4785 "type": "function", 4795 "type": "function",
4786 "description": "Attaches debugger to the tab with given id.", 4796 "description": "Attaches debugger to the tab with given id.",
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
4873 { 4883 {
4874 "type": "integer", 4884 "type": "integer",
4875 "name": "tabId", 4885 "name": "tabId",
4876 "description": "The id of the tab that was detached." 4886 "description": "The id of the tab that was detached."
4877 } 4887 }
4878 ] 4888 ]
4879 } 4889 }
4880 ] 4890 ]
4881 } 4891 }
4882 ] 4892 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698