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

Side by Side Diff: native_client_sdk/src/libraries/nacl_io/mount_node.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 #ifndef LIBRARIES_NACL_MOUNTS_MOUNT_NODE_H_ 5 #ifndef LIBRARIES_NACL_IO_MOUNT_NODE_H_
6 #define LIBRARIES_NACL_MOUNTS_MOUNT_NODE_H_ 6 #define LIBRARIES_NACL_IO_MOUNT_NODE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "nacl_mounts/osstat.h" 10 #include "nacl_io/osstat.h"
11 #include "utils/ref_object.h" 11 #include "utils/ref_object.h"
12 12
13 struct dirent; 13 struct dirent;
14 struct stat; 14 struct stat;
15 class Mount; 15 class Mount;
16 16
17 class MountNode : public RefObject { 17 class MountNode : public RefObject {
18 protected: 18 protected:
19 explicit MountNode(Mount* mount); 19 explicit MountNode(Mount* mount);
20 virtual ~MountNode(); 20 virtual ~MountNode();
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 Mount* mount_; 65 Mount* mount_;
66 66
67 friend class Mount; 67 friend class Mount;
68 friend class MountDev; 68 friend class MountDev;
69 friend class MountHtml5Fs; 69 friend class MountHtml5Fs;
70 friend class MountHttp; 70 friend class MountHttp;
71 friend class MountMem; 71 friend class MountMem;
72 friend class MountNodeDir; 72 friend class MountNodeDir;
73 }; 73 };
74 74
75 #endif // LIBRARIES_NACL_MOUNTS_MOUNT_NODE_H_ 75 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_H_
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/nacl_io/mount_mem.cc ('k') | native_client_sdk/src/libraries/nacl_io/mount_node.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698