blob: 35d50216edb363fdf9bcf290aa8ba8426139efbb [file] [log] [blame]
// Copyright (c) 2017 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_STRING_PIECE_H_
#define QUICHE_COMMON_PLATFORM_API_QUICHE_STRING_PIECE_H_
#include "net/quiche/common/platform/impl/quiche_string_piece_impl.h"
namespace quiche {
using QuicheStringPiece = QuicheStringPieceImpl;
using QuicheStringPieceHash = QuicheStringPieceHashImpl;
inline size_t QuicheHashStringPair(QuicheStringPiece a, QuicheStringPiece b) {
return QuicheHashStringPairImpl(a, b);
}
} // namespace quiche
#endif // QUICHE_COMMON_PLATFORM_API_QUICHE_STRING_PIECE_H_