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

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: review 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 4898 matching lines...) Expand 10 before | Expand all | Expand 10 after
4909 } 4909 }
4910 ] 4910 ]
4911 }, 4911 },
4912 { 4912 {
4913 "namespace": "experimental.contentSettings.misc", 4913 "namespace": "experimental.contentSettings.misc",
4914 "properties": { 4914 "properties": {
4915 "blockThirdPartyCookies": { 4915 "blockThirdPartyCookies": {
4916 "$ref": "Preference", 4916 "$ref": "Preference",
4917 "value": ["blockThirdPartyCookies", {"type": "boolean"}], 4917 "value": ["blockThirdPartyCookies", {"type": "boolean"}],
4918 "description": "Whether third party cookies should be blocked. The value of this preference is of type boolean." 4918 "description": "Whether third party cookies should be blocked. The value of this preference is of type boolean."
4919 },
4920 "enableReferrers": {
4921 "$ref": "Preference",
4922 "value": ["enableReferrers", {"type":"boolean"}],
4923 "description": "Whether referrers should be enabled. The value of this p reference is of type boolean."
4924 },
4925 "enableHyperlinkAuditing": {
4926 "$ref": "Preference",
4927 "value": ["enableHyperlinkAuditing", {"type":"boolean"}],
4928 "description": "Whether to enable hyperlink auditing (\"<a ping>\" ). The value of this preference is of type boolean."
4919 } 4929 }
4920 } 4930 }
4921 }, 4931 },
4922 { 4932 {
4923 "namespace": "experimental.debugger", 4933 "namespace": "experimental.debugger",
4924 "functions": [ 4934 "functions": [
4925 { 4935 {
4926 "name": "attach", 4936 "name": "attach",
4927 "type": "function", 4937 "type": "function",
4928 "description": "Attaches debugger to the tab with given id.", 4938 "description": "Attaches debugger to the tab with given id.",
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
5036 { 5046 {
5037 "type": "integer", 5047 "type": "integer",
5038 "name": "tabId", 5048 "name": "tabId",
5039 "description": "The id of the tab that was detached." 5049 "description": "The id of the tab that was detached."
5040 } 5050 }
5041 ] 5051 ]
5042 } 5052 }
5043 ] 5053 ]
5044 } 5054 }
5045 ] 5055 ]
OLDNEW
« no previous file with comments | « chrome/browser/ui/browser.cc ('k') | chrome/common/extensions/docs/experimental.contentSettings.misc.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698