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

Unified Diff: chrome/common/extensions/api/test.json

Issue 166793003: Allow FTP requests by Chromium extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/extension_apitest.cc ('k') | chrome/renderer/extensions/dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/test.json
diff --git a/chrome/common/extensions/api/test.json b/chrome/common/extensions/api/test.json
index 4776d9a09b027f0446e8dcda051b1cda53320f5a..61ae9864178367e416159f3f060f95fd9d6aab29 100644
--- a/chrome/common/extensions/api/test.json
+++ b/chrome/common/extensions/api/test.json
@@ -23,6 +23,19 @@
"optional": true,
"description": "Additional string argument to pass to test."
},
+ "ftpServer": {
+ "type": "object",
+ "optional": true,
+ "description": "Details on the FTP server used to mock network responses. Will be set only if test calls ExtensionApiTest::StartFTPServer().",
+ "properties": {
+ "port": {
+ "type": "integer",
+ "description": "The port on which the FTP server is listening.",
+ "minimum": 1024,
+ "maximum": 65535
+ }
+ }
+ },
"testServer": {
"type": "object",
"optional": true,
« no previous file with comments | « chrome/browser/extensions/extension_apitest.cc ('k') | chrome/renderer/extensions/dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698