// Copyright 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_MEM_SLICE_H_ #define QUICHE_COMMON_PLATFORM_API_QUICHE_MEM_SLICE_H_ #include <cstddef> #include <memory> #include <utility> #include "quiche_platform_impl/quiche_mem_slice_impl.h" #include "absl/strings/string_view.h" #include "quiche/common/platform/api/quiche_export.h" #include "quiche/common/quiche_buffer_allocator.h" #include "quiche/common/quiche_callbacks.h" namespace quiche { // QuicheMemSlice is a wrapper around a platform-specific I/O buffer type. It // may be reference counted, though QUICHE itself does not rely on that. class QUICHE_EXPORT QuicheMemSlice { … }; } // namespace quiche #endif // QUICHE_COMMON_PLATFORM_API_QUICHE_MEM_SLICE_H_