| 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_
|
|
|