Chromium Code Reviews| Index: native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_util.h |
| diff --git a/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_util.h b/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_util.h |
| index 11e6103e11626f298d51737830364dfa9855ccf9..40cd53d6b714313fecd33aa6d03e6b85f4add7a9 100644 |
| --- a/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_util.h |
| +++ b/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_util.h |
| @@ -32,6 +32,16 @@ class FakeFileSystemResource : public FakeResource { |
| bool opened; |
| }; |
| +class FakePepperInterfaceFsInstanceResource : public FakeResource { |
|
Sam Clegg
2016/10/31 17:26:36
Can we make this less of a mouthful?
How about ju
chanpatorikku
2016/11/01 11:57:48
Yes. Changed to FakeHtml5FsResource.
|
| + public: |
| + FakePepperInterfaceFsInstanceResource() : filesystem_template(NULL) {} |
| + static const char* classname() { |
| + return "FakePepperInterfaceFsInstanceResource"; |
| + } |
| + |
| + FakeHtml5FsFilesystem* filesystem_template; // Weak reference. |
| +}; |
| + |
| int32_t RunCompletionCallback(PP_CompletionCallback* callback, int32_t result); |
| #endif // LIBRARIES_NACL_IO_TEST_FAKE_UTIL_H_ |