Index: native_client_sdk/src/libraries/nacl_mounts/mount_dev.h |
diff --git a/native_client_sdk/src/libraries/nacl_mounts/mount_dev.h b/native_client_sdk/src/libraries/nacl_mounts/mount_dev.h |
deleted file mode 100644 |
index 4d811864a9ebe0d71776894d89aa36a0c0bcbe73..0000000000000000000000000000000000000000 |
--- a/native_client_sdk/src/libraries/nacl_mounts/mount_dev.h |
+++ /dev/null |
@@ -1,41 +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_DEV_H_ |
-#define LIBRARIES_NACL_MOUNTS_MOUNT_DEV_H_ |
- |
-#include "nacl_mounts/mount.h" |
- |
-class MountNode; |
- |
-class MountDev : 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); |
- |
- protected: |
- MountDev(); |
- |
- virtual bool Init(int dev, StringMap_t& args, PepperInterface* ppapi); |
- virtual void Destroy(); |
- |
- private: |
- MountNode* root_; |
- MountNode* null_node_; |
- MountNode* zero_node_; |
- MountNode* random_node_; |
- MountNode* console0_node_; |
- MountNode* console1_node_; |
- MountNode* console2_node_; |
- MountNode* console3_node_; |
- MountNode* tty_node_; |
- |
- friend class Mount; |
-}; |
- |
-#endif // LIBRARIES_NACL_MOUNTS_MOUNT_DEV_H_ |