| // Copyright (c) 2019 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #ifndef QUICHE_COMMON_PLATFORM_API_QUICHE_UNORDERED_CONTAINERS_H_ |
| #define QUICHE_COMMON_PLATFORM_API_QUICHE_UNORDERED_CONTAINERS_H_ |
| #include "net/quiche/common/platform/impl/quiche_unordered_containers_impl.h" |
| // The default hasher used by hash tables. |
| using QuicheDefaultHasher = QuicheDefaultHasherImpl<Key>; |
| // A general-purpose unordered map. |
| typename Hash = QuicheDefaultHasher<Key>> |
| using QuicheUnorderedMap = QuicheUnorderedMapImpl<Key, Value, Hash>; |
| #endif // QUICHE_COMMON_PLATFORM_API_QUICHE_UNORDERED_CONTAINERS_H_ |