| OLD | NEW |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 */ | |
| 5 | 4 |
| 6 #ifndef LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ | 5 #ifndef LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ |
| 7 #define LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ | 6 #define LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ |
| 8 | 7 |
| 9 #include <map> | 8 #include <map> |
| 10 #include <string> | 9 #include <string> |
| 11 #include <vector> | 10 #include <vector> |
| 12 | 11 |
| 13 #include "nacl_io/error.h" | 12 #include "nacl_io/error.h" |
| 14 #include "nacl_io/mount_node.h" | 13 #include "nacl_io/mount_node.h" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 bool cache_content_; | 64 bool cache_content_; |
| 66 bool has_cached_size_; | 65 bool has_cached_size_; |
| 67 std::vector<char> cached_data_; | 66 std::vector<char> cached_data_; |
| 68 | 67 |
| 69 friend class MountHttp; | 68 friend class MountHttp; |
| 70 }; | 69 }; |
| 71 | 70 |
| 72 } // namespace nacl_io | 71 } // namespace nacl_io |
| 73 | 72 |
| 74 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ | 73 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ |
| OLD | NEW |