fayang | 89b9af5 | 2019-07-23 07:52:49 -0700 | [diff] [blame] | 1 | // Copyright (c) 2019 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 | #ifndef QUICHE_SPDY_PLATFORM_API_SPDY_MAP_UTIL_H_ |
| 6 | #define QUICHE_SPDY_PLATFORM_API_SPDY_MAP_UTIL_H_ |
| 7 | |
| 8 | #include "net/spdy/platform/impl/spdy_map_util_impl.h" |
| 9 | |
| 10 | namespace spdy { |
| 11 | |
| 12 | template <class Collection, class Key> |
| 13 | bool SpdyContainsKey(const Collection& collection, const Key& key) { |
| 14 | return SpdyContainsKeyImpl(collection, key); |
| 15 | } |
| 16 | |
| 17 | } // namespace spdy |
| 18 | |
| 19 | #endif // QUICHE_SPDY_PLATFORM_API_SPDY_MAP_UTIL_H_ |