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

Unified Diff: native_client_sdk/src/libraries/nacl_mounts/mount_html5fs.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_mounts/mount_html5fs.h
diff --git a/native_client_sdk/src/libraries/nacl_mounts/mount_html5fs.h b/native_client_sdk/src/libraries/nacl_mounts/mount_html5fs.h
deleted file mode 100644
index 4c54f171a438c8d474760ba2f3a0eb3c232649d8..0000000000000000000000000000000000000000
--- a/native_client_sdk/src/libraries/nacl_mounts/mount_html5fs.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-#ifndef LIBRARIES_NACL_MOUNTS_MOUNT_HTML5FS_H_
-#define LIBRARIES_NACL_MOUNTS_MOUNT_HTML5FS_H_
-
-#include <pthread.h>
-#include "nacl_mounts/mount.h"
-#include "nacl_mounts/pepper_interface.h"
-
-class MountNode;
-
-class MountHtml5Fs: public Mount {
- public:
- virtual MountNode *Open(const Path& path, int mode);
- virtual int Unlink(const Path& path);
- virtual int Mkdir(const Path& path, int permissions);
- virtual int Rmdir(const Path& path);
- virtual int Remove(const Path& path);
-
- PP_Resource filesystem_resource() { return filesystem_resource_; }
-
- protected:
- MountHtml5Fs();
-
- virtual bool Init(int dev, StringMap_t& args, PepperInterface* ppapi);
- virtual void Destroy();
-
- bool IsFilesystemOpen();
-
- private:
- static void FilesystemOpenCallbackThunk(void* user_data, int32_t result);
- void FilesystemOpenCallback(int32_t result);
-
- PP_Resource filesystem_resource_;
- bool filesystem_open_; // protected by lock_.
-
- friend class Mount;
-};
-
-#endif // LIBRARIES_NACL_MOUNTS_MOUNT_HTML5FS_H_
« no previous file with comments | « native_client_sdk/src/libraries/nacl_mounts/mount_dev.cc ('k') | native_client_sdk/src/libraries/nacl_mounts/mount_html5fs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698