chromium/third_party/crashpad/crashpad/minidump/minidump_annotation_writer.cc

// Copyright 2017 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 "minidump/minidump_annotation_writer.h"

#include <memory>

#include "base/check_op.h"
#include "base/logging.h"
#include "util/file/file_writer.h"
#include "util/numeric/safe_assignment.h"

namespace crashpad {

MinidumpAnnotationWriter::MinidumpAnnotationWriter() = default;

MinidumpAnnotationWriter::~MinidumpAnnotationWriter() = default;

void MinidumpAnnotationWriter::InitializeFromSnapshot(
    const AnnotationSnapshot& snapshot) {}

void MinidumpAnnotationWriter::InitializeWithData(
    const std::string& name,
    uint16_t type,
    const std::vector<uint8_t>& data) {}

bool MinidumpAnnotationWriter::Freeze() {}

size_t MinidumpAnnotationWriter::SizeOfObject() {}

std::vector<internal::MinidumpWritable*> MinidumpAnnotationWriter::Children() {}

bool MinidumpAnnotationWriter::WriteObject(FileWriterInterface* file_writer) {}

MinidumpAnnotationListWriter::MinidumpAnnotationListWriter()
    :{}

MinidumpAnnotationListWriter::~MinidumpAnnotationListWriter() = default;

void MinidumpAnnotationListWriter::InitializeFromList(
    const std::vector<AnnotationSnapshot>& list) {}

void MinidumpAnnotationListWriter::AddObject(
    std::unique_ptr<MinidumpAnnotationWriter> annotation_writer) {}

bool MinidumpAnnotationListWriter::IsUseful() const {}

bool MinidumpAnnotationListWriter::Freeze() {}

size_t MinidumpAnnotationListWriter::SizeOfObject() {}

std::vector<internal::MinidumpWritable*>
MinidumpAnnotationListWriter::Children() {}

bool MinidumpAnnotationListWriter::WriteObject(
    FileWriterInterface* file_writer) {}

}  // namespace crashpad