| 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_MOUNTS_MOUNT_NODE_H_ |
| 6 #define LIBRARIES_NACL_MOUNTS_MOUNT_NODE_H_ | 6 #define LIBRARIES_NACL_MOUNTS_MOUNT_NODE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "nacl_mounts/osstat.h" | 10 #include "nacl_mounts/osstat.h" |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 // Update the link count | 58 // Update the link count |
| 59 virtual void Link(); | 59 virtual void Link(); |
| 60 virtual void Unlink(); | 60 virtual void Unlink(); |
| 61 | 61 |
| 62 protected: | 62 protected: |
| 63 struct stat stat_; | 63 struct stat stat_; |
| 64 Mount* mount_; | 64 Mount* mount_; |
| 65 | 65 |
| 66 friend class MountDev; | 66 friend class MountDev; |
| 67 friend class MountHtml5Fs; | 67 friend class MountHtml5Fs; |
| 68 friend class MountHttp; |
| 68 friend class MountMem; | 69 friend class MountMem; |
| 69 friend class MountNodeDir; | 70 friend class MountNodeDir; |
| 70 }; | 71 }; |
| 71 | 72 |
| 72 #endif // LIBRARIES_NACL_MOUNTS_MOUNT_NODE_H_ | 73 #endif // LIBRARIES_NACL_MOUNTS_MOUNT_NODE_H_ |
| OLD | NEW |