Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: native_client_sdk/src/libraries/nacl_io/node.h

Issue 242533005: [NaCl SDK] nacl_io: Add flow control the JavaScript pipes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/nacl_io/log.h ('k') | native_client_sdk/src/libraries/nacl_io/pipe/pipe_event_emitter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698