// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/services/storage/public/cpp/big_io_buffer.h" #include "mojo/public/cpp/base/big_buffer.h" #include "net/base/io_buffer.h" namespace storage { BigIOBuffer::BigIOBuffer(mojo_base::BigBuffer buffer) : … { … } BigIOBuffer::BigIOBuffer(size_t size) : … { … } BigIOBuffer::~BigIOBuffer() { … } mojo_base::BigBuffer BigIOBuffer::TakeBuffer() { … } } // namespace storage