| Index: ppapi/tests/test_url_loader.h
|
| diff --git a/ppapi/tests/test_url_loader.h b/ppapi/tests/test_url_loader.h
|
| index f1626045a21178be94427cb3eb2dcba281a70282..f88813ec60348d5a48c8a8605eb9185a6274c286 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();
|
|
|