chromium/third_party/crashpad/crashpad/util/file/output_stream_file_writer.cc

// Copyright 2020 The Crashpad Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "util/file/output_stream_file_writer.h"

#include "base/logging.h"
#include "base/notreached.h"
#include "util/stream/output_stream_interface.h"

namespace crashpad {

OutputStreamFileWriter::OutputStreamFileWriter(
    std::unique_ptr<OutputStreamInterface> output_stream)
    :{}

OutputStreamFileWriter::~OutputStreamFileWriter() {}

bool OutputStreamFileWriter::Write(const void* data, size_t size) {}

bool OutputStreamFileWriter::WriteIoVec(std::vector<WritableIoVec>* iovecs) {}

FileOffset OutputStreamFileWriter::Seek(FileOffset offset, int whence) {}

bool OutputStreamFileWriter::Flush() {}

}  // namespace crashpad