| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "core/fetch/CachedMetadata.h" | |
| 6 | |
| 7 namespace blink { | |
| 8 | |
| 9 CachedMetadata::CachedMetadata(const char* data, size_t size) { | |
| 10 // We need to define a local variable to use the constant in DCHECK. | |
| 11 constexpr auto kDataStart = CachedMetadata::kDataStart; | |
| 12 // Serialized metadata should have non-empty data. | |
| 13 DCHECK_GT(size, kDataStart); | |
| 14 DCHECK(data); | |
| 15 | |
| 16 m_serializedData.reserveInitialCapacity(size); | |
| 17 m_serializedData.append(data, size); | |
| 18 } | |
| 19 | |
| 20 CachedMetadata::CachedMetadata(uint32_t dataTypeID, | |
| 21 const char* data, | |
| 22 size_t size) { | |
| 23 // Don't allow an ID of 0, it is used internally to indicate errors. | |
| 24 DCHECK(dataTypeID); | |
| 25 DCHECK(data); | |
| 26 | |
| 27 m_serializedData.reserveInitialCapacity(sizeof(uint32_t) + size); | |
| 28 m_serializedData.append(reinterpret_cast<const char*>(&dataTypeID), | |
| 29 sizeof(uint32_t)); | |
| 30 m_serializedData.append(data, size); | |
| 31 } | |
| 32 | |
| 33 } // namespace blink | |
| OLD | NEW |