blob: 64ce5f5f4786cfce1272f8d291cf5abde666a66e [file] [log] [blame]
QUICHE teamfd50a402018-12-07 22:54:05 -05001// Copyright 2018 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_HTTP2_PLATFORM_API_HTTP2_OPTIONAL_H_
6#define QUICHE_HTTP2_PLATFORM_API_HTTP2_OPTIONAL_H_
7
8#include <utility>
9
10#include "net/http2/platform/impl/http2_optional_impl.h"
11
12namespace http2 {
13
14template <typename T>
15using Http2Optional = Http2OptionalImpl<T>;
16
17} // namespace http2
18
19#endif // QUICHE_HTTP2_PLATFORM_API_HTTP2_OPTIONAL_H_