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

Unified Diff: native_client_sdk/src/libraries/nacl_mounts/mount_dev.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_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_
« no previous file with comments | « native_client_sdk/src/libraries/nacl_mounts/mount.cc ('k') | native_client_sdk/src/libraries/nacl_mounts/mount_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698