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.
4
5#include "content/browser/indexed_db/indexed_db_value.h"
6
7#include "base/logging.h"
8
9namespace content {
10
11IndexedDBValue::IndexedDBValue() {}
12IndexedDBValue::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());
17}
18IndexedDBValue::~IndexedDBValue() {}
19
20}  // namespace content
21