| 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_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 Loading... |
| 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_ |
| OLD | NEW |