diff options
Diffstat (limited to 'ppapi/tests/test_url_loader.h')
-rw-r--r-- | ppapi/tests/test_url_loader.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ppapi/tests/test_url_loader.h b/ppapi/tests/test_url_loader.h index f162604..f88813e 100644 --- a/ppapi/tests/test_url_loader.h +++ b/ppapi/tests/test_url_loader.h @@ -13,6 +13,8 @@ struct PPB_FileIOTrusted; namespace pp { class FileIO; +class FileRef; +class FileSystem; class URLLoader; class URLRequestInfo; } @@ -31,9 +33,15 @@ class TestURLLoader : public TestCase { std::string* body); std::string LoadAndCompareBody(const pp::URLRequestInfo& request, const std::string& expected_body); + int32_t OpenFileSystem(pp::FileSystem* file_system, std::string* message); + int32_t PrepareFileForPost(const pp::FileRef& file_ref, + const std::string& data, + std::string* message); std::string TestBasicGET(); std::string TestBasicPOST(); + std::string TestBasicFilePOST(); + std::string TestBasicFileRangePOST(); std::string TestCompoundBodyPOST(); std::string TestEmptyDataPOST(); std::string TestBinaryDataPOST(); |