OLD | NEW |
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_IO_MOUNT_NODE_H_ | 5 #ifndef LIBRARIES_NACL_IO_MOUNT_NODE_H_ |
6 #define LIBRARIES_NACL_IO_MOUNT_NODE_H_ | 6 #define LIBRARIES_NACL_IO_MOUNT_NODE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "nacl_io/osstat.h" | 10 #include "nacl_io/osstat.h" |
11 #include "utils/ref_object.h" | 11 #include "sdk_util/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(); |
21 | 21 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 | 68 |
69 friend class Mount; | 69 friend class Mount; |
70 friend class MountDev; | 70 friend class MountDev; |
71 friend class MountHtml5Fs; | 71 friend class MountHtml5Fs; |
72 friend class MountHttp; | 72 friend class MountHttp; |
73 friend class MountMem; | 73 friend class MountMem; |
74 friend class MountNodeDir; | 74 friend class MountNodeDir; |
75 }; | 75 }; |
76 | 76 |
77 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_H_ | 77 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_H_ |
OLD | NEW |