chromium/third_party/blink/common/indexeddb/indexeddb_key_range.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/public/common/indexeddb/indexeddb_key_range.h"

namespace blink {

IndexedDBKeyRange::IndexedDBKeyRange() = default;

IndexedDBKeyRange::IndexedDBKeyRange(const blink::IndexedDBKey& lower,
                                     const blink::IndexedDBKey& upper,
                                     bool lower_open,
                                     bool upper_open)
    :{}

IndexedDBKeyRange::IndexedDBKeyRange(const blink::IndexedDBKey& key)
    :{}

IndexedDBKeyRange::IndexedDBKeyRange(const IndexedDBKeyRange& other) = default;
IndexedDBKeyRange::~IndexedDBKeyRange() = default;
IndexedDBKeyRange& IndexedDBKeyRange::operator=(
    const IndexedDBKeyRange& other) = default;

bool IndexedDBKeyRange::IsOnlyKey() const {}

bool IndexedDBKeyRange::IsEmpty() const {}

}  // namespace blink