Revert 268405 "Make sure that ScratchBuffer::Allocate() always r..."
[chromium-blink-merge.git] / content / browser / indexed_db / indexed_db_value.h
blob9a5385f5266d944e9a5e9481156d1073aeefeb8f
1 // Copyright 2014 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.
5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_
8 #include <vector>
9 #include "content/browser/indexed_db/indexed_db_blob_info.h"
10 #include "content/common/content_export.h"
12 namespace content {
14 struct CONTENT_EXPORT IndexedDBValue {
15 IndexedDBValue();
16 IndexedDBValue(const std::string& input_bits,
17 const std::vector<IndexedDBBlobInfo>& input_blob_info);
18 ~IndexedDBValue();
20 void swap(IndexedDBValue& value) {
21 bits.swap(value.bits);
22 blob_info.swap(value.blob_info);
25 bool empty() const { return bits.empty(); }
26 void clear() {
27 bits.clear();
28 blob_info.clear();
31 size_t SizeEstimate() const {
32 return bits.size() + blob_info.size() * sizeof(IndexedDBBlobInfo);
35 std::string bits;
36 std::vector<IndexedDBBlobInfo> blob_info;
39 } // namespace content
41 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_