blob: e9b5f857b8c115d44889deeff19061c7f1e7dd2a [file] [log] [blame]
fayang89b9af52019-07-23 07:52:49 -07001// 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
10namespace spdy {
11
12template <class Collection, class Key>
13bool 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_