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

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

Issue 8587052: When allowing an extension file:/// URL access, grant its process access to that scheme. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix indentation Created 9 years, 1 month 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 "types": [ 4 "types": [
5 { 5 {
6 "id": "MessageSender", 6 "id": "MessageSender",
7 "type": "object", 7 "type": "object",
8 "description": "An object containing information about the script contex t that sent a message or request.", 8 "description": "An object containing information about the script contex t that sent a message or request.",
9 "properties": { 9 "properties": {
10 "tab": {"$ref": "Tab", "optional": true, "description":"This property will <b>only</b> be present when the connection was opened from a tab or content script."}, 10 "tab": {"$ref": "Tab", "optional": true, "description":"This property will <b>only</b> be present when the connection was opened from a tab or content script."},
(...skipping 6311 matching lines...) Expand 10 before | Expand all | Expand 10 after
6322 "optional": true, 6322 "optional": true,
6323 "description": "Details on the test server used to mock netw ork responses. Will be set only if test calls ExtensionApiTest::StartTestServer ().", 6323 "description": "Details on the test server used to mock netw ork responses. Will be set only if test calls ExtensionApiTest::StartTestServer ().",
6324 "properties": { 6324 "properties": {
6325 "port": { 6325 "port": {
6326 "type": "integer", 6326 "type": "integer",
6327 "description": "The port on which the test server is lis tening.", 6327 "description": "The port on which the test server is lis tening.",
6328 "minimum": 1024, 6328 "minimum": 1024,
6329 "maximum": 65535 6329 "maximum": 65535
6330 } 6330 }
6331 } 6331 }
6332 },
6333 "testDataDirectory": {
6334 "type": "string",
6335 "description": "file:/// URL for the API test data directory ."
6332 } 6336 }
6333 } 6337 }
6334 } 6338 }
6335 ] 6339 ]
6336 } 6340 }
6337 ] 6341 ]
6338 }, 6342 },
6339 { 6343 {
6340 "name": "notifyFail", 6344 "name": "notifyFail",
6341 "unprivileged": true, 6345 "unprivileged": true,
(...skipping 2866 matching lines...) Expand 10 before | Expand all | Expand 10 after
9208 } 9212 }
9209 } 9213 }
9210 } 9214 }
9211 ] 9215 ]
9212 } 9216 }
9213 ] 9217 ]
9214 } 9218 }
9215 ] 9219 ]
9216 } 9220 }
9217 ] 9221 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698