Blink roll 25b6bd3a7a131ffe68d809546ad1a20707915cdc:3a503f41ae42e5b79cfcd2ff10e65afde...
[chromium-blink-merge.git] / content / browser / indexed_db / indexed_db_value.cc
blob28435211df54dbcdc53f49efc5b65c661a68f960
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 #include "content/browser/indexed_db/indexed_db_value.h"
7 #include "base/logging.h"
9 namespace content {
11 IndexedDBValue::IndexedDBValue() {}
12 IndexedDBValue::IndexedDBValue(
13 const std::string& input_bits,
14 const std::vector<IndexedDBBlobInfo>& input_blob_info)
15 : bits(input_bits), blob_info(input_blob_info) {
16 DCHECK(!input_blob_info.size() || input_bits.size());
18 IndexedDBValue::~IndexedDBValue() {}
20 } // namespace content