| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 STORAGE_BROWSER_BLOB_BLOB_ASYNC_TRANSPORT_REQUEST_BUILDER_H_ | 5 #ifndef STORAGE_BROWSER_BLOB_BLOB_ASYNC_TRANSPORT_REQUEST_BUILDER_H_ |
| 6 #define STORAGE_BROWSER_BLOB_BLOB_ASYNC_TRANSPORT_REQUEST_BUILDER_H_ | 6 #define STORAGE_BROWSER_BLOB_BLOB_ASYNC_TRANSPORT_REQUEST_BUILDER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 107 |
| 108 // The requests for memory, segmented as described above, along with their | 108 // The requests for memory, segmented as described above, along with their |
| 109 // destination browser indexes and offsets. | 109 // destination browser indexes and offsets. |
| 110 const std::vector<RendererMemoryItemRequest>& requests() const { | 110 const std::vector<RendererMemoryItemRequest>& requests() const { |
| 111 return requests_; | 111 return requests_; |
| 112 } | 112 } |
| 113 | 113 |
| 114 // The total bytes size of memory items in the blob. | 114 // The total bytes size of memory items in the blob. |
| 115 uint64_t total_bytes_size() const { return total_bytes_size_; } | 115 uint64_t total_bytes_size() const { return total_bytes_size_; } |
| 116 | 116 |
| 117 static bool ShouldBeShortcut(const std::vector<DataElement>& items, | |
| 118 size_t memory_available); | |
| 119 | |
| 120 private: | 117 private: |
| 121 static void ComputeHandleSizes(uint64_t total_memory_size, | 118 static void ComputeHandleSizes(uint64_t total_memory_size, |
| 122 size_t max_segment_size, | 119 size_t max_segment_size, |
| 123 std::vector<size_t>* segment_sizes); | 120 std::vector<size_t>* segment_sizes); |
| 124 | 121 |
| 125 std::vector<size_t> shared_memory_sizes_; | 122 std::vector<size_t> shared_memory_sizes_; |
| 126 // The size of the files is capped by the |max_file_size| argument in | 123 // The size of the files is capped by the |max_file_size| argument in |
| 127 // InitializeForFileRequests, so we can just use size_t. | 124 // InitializeForFileRequests, so we can just use size_t. |
| 128 std::vector<size_t> file_sizes_; | 125 std::vector<size_t> file_sizes_; |
| 129 | 126 |
| 130 uint64_t total_bytes_size_; | 127 uint64_t total_bytes_size_; |
| 131 std::vector<RendererMemoryItemRequest> requests_; | 128 std::vector<RendererMemoryItemRequest> requests_; |
| 132 | 129 |
| 133 DISALLOW_COPY_AND_ASSIGN(BlobAsyncTransportRequestBuilder); | 130 DISALLOW_COPY_AND_ASSIGN(BlobAsyncTransportRequestBuilder); |
| 134 }; | 131 }; |
| 135 | 132 |
| 136 } // namespace storage | 133 } // namespace storage |
| 137 | 134 |
| 138 #endif // STORAGE_BROWSER_BLOB_BLOB_ASYNC_TRANSPORT_REQUEST_BUILDER_H_ | 135 #endif // STORAGE_BROWSER_BLOB_BLOB_ASYNC_TRANSPORT_REQUEST_BUILDER_H_ |
| OLD | NEW |