Chromium Code Reviews| Index: ppapi/tests/test_file_ref.h |
| diff --git a/ppapi/tests/test_file_ref.h b/ppapi/tests/test_file_ref.h |
| index 916ea3595cfdeab0e3d52d9a706102fa5e0bc641..2ef5d464fd4ff6954c172c682fe696d5e9eb9100 100644 |
| --- a/ppapi/tests/test_file_ref.h |
| +++ b/ppapi/tests/test_file_ref.h |
| @@ -9,6 +9,10 @@ |
| #include "ppapi/tests/test_case.h" |
| +namespace pp { |
| +class FileRef; |
| +} |
| + |
| class TestFileRef : public TestCase { |
| public: |
| explicit TestFileRef(TestingInstance* instance) : TestCase(instance) {} |
| @@ -18,6 +22,10 @@ class TestFileRef : public TestCase { |
| virtual void RunTests(const std::string& filter); |
| private: |
| + // Creates a FileRef on an external filesystem. |
| + // Returns "" on success, a different string otherwise. |
| + std::string MakeExternalFileRef(pp::FileRef *file_ref_ext); |
|
yzshen1
2013/03/26 23:32:42
wrong position: '*'
|
| + |
| std::string TestCreate(); |
| std::string TestGetFileSystemType(); |
| std::string TestGetName(); |
| @@ -27,6 +35,7 @@ class TestFileRef : public TestCase { |
| std::string TestQueryAndTouchFile(); |
| std::string TestDeleteFileAndDirectory(); |
| std::string TestRenameFileAndDirectory(); |
| + std::string TestQuery(); |
| std::string TestFileNameEscaping(); |
| }; |