| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 std::vector<char> buffer_; | 60 std::vector<char> buffer_; |
| 62 | 61 |
| 63 bool cache_content_; | 62 bool cache_content_; |
| 64 bool has_cached_size_; | 63 bool has_cached_size_; |
| 65 std::vector<char> cached_data_; | 64 std::vector<char> cached_data_; |
| 66 | 65 |
| 67 friend class MountHttp; | 66 friend class MountHttp; |
| 68 }; | 67 }; |
| 69 | 68 |
| 70 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ | 69 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ |
| OLD | NEW |