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

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

Issue 12194030: Rename mount (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix whitespace Created 7 years, 10 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/kernel_proxy.h
diff --git a/native_client_sdk/src/libraries/nacl_mounts/kernel_proxy.h b/native_client_sdk/src/libraries/nacl_io/kernel_proxy.h
similarity index 91%
rename from native_client_sdk/src/libraries/nacl_mounts/kernel_proxy.h
rename to native_client_sdk/src/libraries/nacl_io/kernel_proxy.h
index 0df80ee3c71fe7a5a466858f0ce1ad1c502528f6..904ef52760f14bd8504d5d85f268591272ce42bd 100644
--- a/native_client_sdk/src/libraries/nacl_mounts/kernel_proxy.h
+++ b/native_client_sdk/src/libraries/nacl_io/kernel_proxy.h
@@ -2,8 +2,8 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-#ifndef LIBRARIES_NACL_MOUNTS_KERNEL_PROXY_H_
-#define LIBRARIES_NACL_MOUNTS_KERNEL_PROXY_H_
+#ifndef LIBRARIES_NACL_IO_KERNEL_PROXY_H_
+#define LIBRARIES_NACL_IO_KERNEL_PROXY_H_
#include <ppapi/c/pp_instance.h>
#include <ppapi/c/ppb.h>
@@ -12,10 +12,10 @@
#include <string>
#include <vector>
-#include "nacl_mounts/kernel_object.h"
-#include "nacl_mounts/mount.h"
-#include "nacl_mounts/ostypes.h"
-#include "nacl_mounts/path.h"
+#include "nacl_io/kernel_object.h"
+#include "nacl_io/mount.h"
+#include "nacl_io/ostypes.h"
+#include "nacl_io/path.h"
class KernelHandle;
class Mount;
@@ -46,7 +46,7 @@ class KernelProxy : protected KernelObject {
virtual int chdir(const char* path);
virtual char* getcwd(char* buf, size_t size);
virtual char* getwd(char* buf);
- virtual int mount(const char *source, const char *target,
+ virtual int mount(const char *source, const char *target,
const char *filesystemtype, unsigned long mountflags, const void *data);
virtual int umount(const char *path);
@@ -99,4 +99,4 @@ protected:
DISALLOW_COPY_AND_ASSIGN(KernelProxy);
};
-#endif // LIBRARIES_NACL_MOUNTS_KERNEL_PROXY_H_
+#endif // LIBRARIES_NACL_IO_KERNEL_PROXY_H_
« no previous file with comments | « native_client_sdk/src/libraries/nacl_io/kernel_object.cc ('k') | native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698