// 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. #ifndef THIRD_PARTY_BLINK_PUBLIC_COMMON_INDEXEDDB_INDEXEDDB_KEY_H_ #define THIRD_PARTY_BLINK_PUBLIC_COMMON_INDEXEDDB_INDEXEDDB_KEY_H_ #include <stddef.h> #include <string> #include <vector> #include "base/check_op.h" #include "third_party/blink/public/common/common_export.h" #include "third_party/blink/public/mojom/indexeddb/indexeddb.mojom-shared.h" namespace blink { class BLINK_COMMON_EXPORT IndexedDBKey { … }; // An index id, and corresponding set of keys to insert. struct IndexedDBIndexKeys { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_PUBLIC_COMMON_INDEXEDDB_INDEXEDDB_KEY_H_