Index: chrome/browser/extensions/extension_apitest.h |
diff --git a/chrome/browser/extensions/extension_apitest.h b/chrome/browser/extensions/extension_apitest.h |
index 9586f966ad3748b318acec02729a014f31627c09..a6518c65421d346f36c6ea41d6ddd37d475c9908 100644 |
--- a/chrome/browser/extensions/extension_apitest.h |
+++ b/chrome/browser/extensions/extension_apitest.h |
@@ -173,6 +173,11 @@ class ExtensionApiTest : public ExtensionBrowserTest { |
// chrome.test.getConfig(). |
bool StartWebSocketServer(const base::FilePath& root_directory); |
+ // Start the test FTP server, and store details of its state. Those |
+ // details will be available to JavaScript tests using |
+ // chrome.test.getConfig(). |
+ bool StartFTPServer(const base::FilePath& root_directory); |
+ |
// Start the spawned test server, and store details of its state. Those |
// details will be available to javascript tests using |
// chrome.test.getConfig(). |
@@ -200,6 +205,9 @@ class ExtensionApiTest : public ExtensionBrowserTest { |
// Hold the test WebSocket server. |
scoped_ptr<net::SpawnedTestServer> websocket_server_; |
+ |
+ // Hold the test FTP server. |
+ scoped_ptr<net::SpawnedTestServer> ftp_server_; |
}; |
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_APITEST_H_ |