Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Unified Diff: native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_file_system_interface.cc

Issue 2467223003: [NaCl SDK] Refactor FakeHtml5FsFilesystem and FakeHtml5FsNode. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_file_system_interface.cc
diff --git a/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_file_system_interface.cc b/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_file_system_interface.cc
index 52f90d69e4956f69ed3dfb43ef7af0d025b4bec3..125bf160d838755cc01254a6d7ce48a6ed709232 100644
--- a/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_file_system_interface.cc
+++ b/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/fake_file_system_interface.cc
@@ -8,7 +8,7 @@
#include <ppapi/c/pp_errors.h>
#include "fake_ppapi/fake_core_interface.h"
-#include "fake_ppapi/fake_pepper_interface_html5_fs.h"
+#include "fake_ppapi/fake_filesystem.h"
#include "fake_ppapi/fake_util.h"
FakeFileSystemInterface::FakeFileSystemInterface(
@@ -31,7 +31,7 @@ PP_Resource FakeFileSystemInterface::Create(PP_Instance instance,
return PP_ERROR_BADRESOURCE;
FakeFileSystemResource* file_system_resource = new FakeFileSystemResource;
- file_system_resource->filesystem = new FakeHtml5FsFilesystem(
+ file_system_resource->filesystem = new FakeFilesystem(
*instance_resource->filesystem_template, filesystem_type);
return CREATE_RESOURCE(core_interface_->resource_manager(),

Powered by Google App Engine
This is Rietveld 408576698