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

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

Issue 11887021: [NaCl SDK] Add HTTP mount. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 7 years, 11 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_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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698