| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_NODE_H_ | 5 #ifndef LIBRARIES_NACL_IO_NODE_H_ |
| 6 #define LIBRARIES_NACL_IO_NODE_H_ | 6 #define LIBRARIES_NACL_IO_NODE_H_ |
| 7 | 7 |
| 8 #include <stdarg.h> | 8 #include <stdarg.h> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 // any cleanup it needs. | 146 // any cleanup it needs. |
| 147 Filesystem* filesystem_; | 147 Filesystem* filesystem_; |
| 148 | 148 |
| 149 friend class DevFs; | 149 friend class DevFs; |
| 150 friend class DirNode; | 150 friend class DirNode; |
| 151 friend class Filesystem; | 151 friend class Filesystem; |
| 152 friend class FuseFs; | 152 friend class FuseFs; |
| 153 friend class Html5Fs; | 153 friend class Html5Fs; |
| 154 friend class HttpFs; | 154 friend class HttpFs; |
| 155 friend class MemFs; | 155 friend class MemFs; |
| 156 friend class GoogleDriveFs; |
| 156 }; | 157 }; |
| 157 | 158 |
| 158 } // namespace nacl_io | 159 } // namespace nacl_io |
| 159 | 160 |
| 160 #endif // LIBRARIES_NACL_IO_NODE_H_ | 161 #endif // LIBRARIES_NACL_IO_NODE_H_ |
| OLD | NEW |