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

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

Issue 16325024: Move thread_pool.h into utils so it can be shared by more than one example. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 6 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 (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_IO_MOUNT_NODE_H_ 5 #ifndef LIBRARIES_NACL_IO_MOUNT_NODE_H_
6 #define LIBRARIES_NACL_IO_MOUNT_NODE_H_ 6 #define LIBRARIES_NACL_IO_MOUNT_NODE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "nacl_io/osstat.h" 10 #include "nacl_io/osstat.h"
11 #include "utils/ref_object.h" 11 #include "sdk_util/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();
21 21
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 friend class Mount; 69 friend class Mount;
70 friend class MountDev; 70 friend class MountDev;
71 friend class MountHtml5Fs; 71 friend class MountHtml5Fs;
72 friend class MountHttp; 72 friend class MountHttp;
73 friend class MountMem; 73 friend class MountMem;
74 friend class MountNodeDir; 74 friend class MountNodeDir;
75 }; 75 };
76 76
77 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_H_ 77 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_H_
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/nacl_io/mount_mem.cc ('k') | native_client_sdk/src/libraries/nacl_io/mount_node.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698