| Index: native_client_sdk/src/libraries/nacl_io/jsfs/js_fs.cc
|
| diff --git a/native_client_sdk/src/libraries/nacl_io/jsfs/js_fs.cc b/native_client_sdk/src/libraries/nacl_io/jsfs/js_fs.cc
|
| index 9c0b2153d7d41c6390987b3b53dc5db0808262fe..b0f18a5327c200aa15f0c28cb6864b064c2add5a 100644
|
| --- a/native_client_sdk/src/libraries/nacl_io/jsfs/js_fs.cc
|
| +++ b/native_client_sdk/src/libraries/nacl_io/jsfs/js_fs.cc
|
| @@ -391,19 +391,6 @@ PP_Var JsFs::WaitForResponse(RequestId request_id) {
|
| }
|
| }
|
|
|
| -Error JsFs::Access(const Path& path, int a_mode) {
|
| - ScopedVar response(ppapi_);
|
| - if (!SendRequestAndWait(&response, "%s%s%d",
|
| - "cmd", "access",
|
| - "path", path.Join().c_str(),
|
| - "amode", a_mode)) {
|
| - LOG_ERROR("Failed to send request.");
|
| - return EINVAL;
|
| - }
|
| -
|
| - return ErrorFromResponse(response);
|
| -}
|
| -
|
| Error JsFs::Open(const Path& path, int open_flags, ScopedNode* out_node) {
|
| out_node->reset(NULL);
|
| ScopedVar response(ppapi_);
|
|
|