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

Unified Diff: native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs_node.h

Issue 349703003: [NaCl SDK] Add some more logging to nacl_io. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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/html5fs/html5_fs_node.h
diff --git a/native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs_node.h b/native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs_node.h
index e76542e0ddf042a1ca4e4f6c72a0357b8856d136..7081bf27f635af1261edcb8780350af79d6d7c73 100644
--- a/native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs_node.h
+++ b/native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs_node.h
@@ -5,12 +5,16 @@
#ifndef LIBRARIES_NACL_IO_HTML5FS_HTML5_FS_NODE_H_
#define LIBRARIES_NACL_IO_HTML5FS_HTML5_FS_NODE_H_
+#include <ppapi/c/pp_instance.h>
#include <ppapi/c/pp_resource.h>
#include "nacl_io/node.h"
namespace nacl_io {
class Html5Fs;
+class FileIoInterface;
+class FileRefInterface;
+class VarInterface;
class Html5FsNode : public Node {
public:
@@ -44,6 +48,9 @@ class Html5FsNode : public Node {
virtual void Destroy();
private:
+ FileIoInterface* file_io_iface_;
+ FileRefInterface* file_ref_iface_;
+ VarInterface* var_iface_;
PP_Resource fileref_resource_;
PP_Resource fileio_resource_; // 0 if the file is a directory.

Powered by Google App Engine
This is Rietveld 408576698