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

Unified Diff: native_client_sdk/src/libraries/nacl_io/fs_factory.h

Issue 242533005: [NaCl SDK] nacl_io: Add flow control the JavaScript pipes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months 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/libraries/nacl_io/fs_factory.h
diff --git a/native_client_sdk/src/libraries/nacl_io/fs_factory.h b/native_client_sdk/src/libraries/nacl_io/fs_factory.h
index ef6ce75c047639881b5d027eaa28d41230e477db..e90ebef5cc4a8081d7f02ab9fd1b9462f86158b8 100644
--- a/native_client_sdk/src/libraries/nacl_io/fs_factory.h
+++ b/native_client_sdk/src/libraries/nacl_io/fs_factory.h
@@ -8,19 +8,18 @@
#include <errno.h>
#include "nacl_io/error.h"
+#include "nacl_io/filesystem.h"
#include "sdk_util/scoped_ref.h"
namespace nacl_io {
-class Filesystem;
class PepperInterface;
-struct FsInitArgs;
class FsFactory {
public:
virtual ~FsFactory() {}
virtual Error CreateFilesystem(const FsInitArgs& args,
- sdk_util::ScopedRef<Filesystem>* out_fs) = 0;
+ ScopedFilesystem* out_fs) = 0;
};
} // namespace nacl_io

Powered by Google App Engine
This is Rietveld 408576698