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

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

Issue 12194030: Rename mount (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix whitespace Created 7 years, 10 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 5
6 #ifndef LIBRARIES_NACL_MOUNTS_MOUNT_HTTP_H_ 6 #ifndef LIBRARIES_NACL_IO_MOUNT_HTTP_H_
7 #define LIBRARIES_NACL_MOUNTS_MOUNT_HTTP_H_ 7 #define LIBRARIES_NACL_IO_MOUNT_HTTP_H_
8 8
9 #include <string> 9 #include <string>
10 #include "nacl_mounts/mount.h" 10 #include "nacl_io/mount.h"
11 #include "nacl_mounts/pepper_interface.h" 11 #include "nacl_io/pepper_interface.h"
12 12
13 class MountNode; 13 class MountNode;
14 class MountNodeDir; 14 class MountNodeDir;
15 class MountNodeHttp; 15 class MountNodeHttp;
16 class MountHttpMock; 16 class MountHttpMock;
17 17
18 class MountHttp : public Mount { 18 class MountHttp : public Mount {
19 public: 19 public:
20 typedef std::map<std::string, MountNode*> NodeMap_t; 20 typedef std::map<std::string, MountNode*> NodeMap_t;
21 21
(...skipping 22 matching lines...) Expand all
44 NodeMap_t node_cache_; 44 NodeMap_t node_cache_;
45 bool allow_cors_; 45 bool allow_cors_;
46 bool allow_credentials_; 46 bool allow_credentials_;
47 bool allow_stat_cache_; 47 bool allow_stat_cache_;
48 48
49 friend class Mount; 49 friend class Mount;
50 friend class MountNodeHttp; 50 friend class MountNodeHttp;
51 friend class MountHttpMock; 51 friend class MountHttpMock;
52 }; 52 };
53 53
54 #endif // LIBRARIES_NACL_MOUNTS_MOUNT_HTTP_H_ 54 #endif // LIBRARIES_NACL_IO_MOUNT_HTTP_H_
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/nacl_io/mount_html5fs.cc ('k') | native_client_sdk/src/libraries/nacl_io/mount_http.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698