chromium/third_party/crashpad/crashpad/snapshot/test/test_module_snapshot.cc

// Copyright 2014 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 "snapshot/test/test_module_snapshot.h"

namespace crashpad {
namespace test {

TestModuleSnapshot::TestModuleSnapshot()
    :{}

TestModuleSnapshot::~TestModuleSnapshot() {}

std::string TestModuleSnapshot::Name() const {}

uint64_t TestModuleSnapshot::Address() const {}

uint64_t TestModuleSnapshot::Size() const {}

time_t TestModuleSnapshot::Timestamp() const {}

void TestModuleSnapshot::FileVersion(uint16_t* version_0,
                                     uint16_t* version_1,
                                     uint16_t* version_2,
                                     uint16_t* version_3) const {}

void TestModuleSnapshot::SourceVersion(uint16_t* version_0,
                                       uint16_t* version_1,
                                       uint16_t* version_2,
                                       uint16_t* version_3) const {}

ModuleSnapshot::ModuleType TestModuleSnapshot::GetModuleType() const {}

void TestModuleSnapshot::UUIDAndAge(crashpad::UUID* uuid, uint32_t* age) const {}

std::string TestModuleSnapshot::DebugFileName() const {}

std::vector<uint8_t> TestModuleSnapshot::BuildID() const {}

std::vector<std::string> TestModuleSnapshot::AnnotationsVector() const {}

std::map<std::string, std::string> TestModuleSnapshot::AnnotationsSimpleMap()
    const {}

std::vector<AnnotationSnapshot> TestModuleSnapshot::AnnotationObjects() const {}

std::set<CheckedRange<uint64_t>> TestModuleSnapshot::ExtraMemoryRanges() const {}

std::vector<const UserMinidumpStream*>
TestModuleSnapshot::CustomMinidumpStreams() const {}

}  // namespace test
}  // namespace crashpad