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 |
11 #include "nacl_io/error.h" | 11 #include "nacl_io/error.h" |
12 #include "nacl_io/event_listener.h" | 12 #include "nacl_io/event_listener.h" |
| 13 #include "nacl_io/log.h" |
13 #include "nacl_io/osdirent.h" | 14 #include "nacl_io/osdirent.h" |
14 #include "nacl_io/osstat.h" | 15 #include "nacl_io/osstat.h" |
15 #include "nacl_io/ostermios.h" | 16 #include "nacl_io/ostermios.h" |
16 | 17 |
17 #include "sdk_util/ref_object.h" | 18 #include "sdk_util/ref_object.h" |
18 #include "sdk_util/scoped_ref.h" | 19 #include "sdk_util/scoped_ref.h" |
19 #include "sdk_util/simple_lock.h" | 20 #include "sdk_util/simple_lock.h" |
20 | 21 |
21 #define S_IRALL (S_IRUSR | S_IRGRP | S_IROTH) | 22 #define S_IRALL (S_IRUSR | S_IRGRP | S_IROTH) |
22 #define S_IWALL (S_IWUSR | S_IWGRP | S_IWOTH) | 23 #define S_IWALL (S_IWUSR | S_IWGRP | S_IWOTH) |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 friend class Filesystem; | 138 friend class Filesystem; |
138 friend class FuseFs; | 139 friend class FuseFs; |
139 friend class Html5Fs; | 140 friend class Html5Fs; |
140 friend class HttpFs; | 141 friend class HttpFs; |
141 friend class MemFs; | 142 friend class MemFs; |
142 }; | 143 }; |
143 | 144 |
144 } // namespace nacl_io | 145 } // namespace nacl_io |
145 | 146 |
146 #endif // LIBRARIES_NACL_IO_NODE_H_ | 147 #endif // LIBRARIES_NACL_IO_NODE_H_ |
OLD | NEW |