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

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: git try 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 4776 matching lines...) Expand 10 before | Expand all | Expand 10 after
4787 } 4787 }
4788 ] 4788 ]
4789 }, 4789 },
4790 { 4790 {
4791 "namespace": "experimental.contentSettings.misc", 4791 "namespace": "experimental.contentSettings.misc",
4792 "properties": { 4792 "properties": {
4793 "blockThirdPartyCookies": { 4793 "blockThirdPartyCookies": {
4794 "$ref": "Preference", 4794 "$ref": "Preference",
4795 "value": ["blockThirdPartyCookies", {"type": "boolean"}], 4795 "value": ["blockThirdPartyCookies", {"type": "boolean"}],
4796 "description": "Whether third party cookies should be blocked. The value of this preference is of type boolean." 4796 "description": "Whether third party cookies should be blocked. The value of this preference is of type boolean."
4797 },
4798 "enableReferrers": {
4799 "$ref": "Preference",
4800 "value": ["enableReferrers", {"type":"boolean"}],
4801 "description": "Whether referrers should be enabled. The value of this p reference is of type boolean."
4802 },
4803 "enableHyperlinkAuditing": {
4804 "$ref": "Preference",
4805 "value": ["enableHyperlinkAuditing", {"type":"boolean"}],
4806 "description": "Whether to enable hyperlink auditing (\"<a ping>\" ). The value of this preference is of type boolean."
4797 } 4807 }
4798 } 4808 }
4799 }, 4809 },
4800 { 4810 {
4801 "namespace": "experimental.debugger", 4811 "namespace": "experimental.debugger",
4802 "functions": [ 4812 "functions": [
4803 { 4813 {
4804 "name": "attach", 4814 "name": "attach",
4805 "type": "function", 4815 "type": "function",
4806 "description": "Attaches debugger to the tab with given id.", 4816 "description": "Attaches debugger to the tab with given id.",
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
4924 { 4934 {
4925 "type": "integer", 4935 "type": "integer",
4926 "name": "tabId", 4936 "name": "tabId",
4927 "description": "The id of the tab that was detached." 4937 "description": "The id of the tab that was detached."
4928 } 4938 }
4929 ] 4939 ]
4930 } 4940 }
4931 ] 4941 ]
4932 } 4942 }
4933 ] 4943 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698