| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |