chromium/third_party/crashpad/crashpad/snapshot/sanitized/module_snapshot_sanitized.cc

// Copyright 2018 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/sanitized/module_snapshot_sanitized.h"

#include "base/strings/pattern.h"

namespace crashpad {
namespace internal {

namespace {

bool KeyIsAllowed(const std::string& name,
                  const std::vector<std::string>& allowed_keys) {}

}  // namespace

ModuleSnapshotSanitized::ModuleSnapshotSanitized(
    const ModuleSnapshot* snapshot,
    const std::vector<std::string>* allowed_annotations)
    :{}

ModuleSnapshotSanitized::~ModuleSnapshotSanitized() = default;

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

uint64_t ModuleSnapshotSanitized::Address() const {}

uint64_t ModuleSnapshotSanitized::Size() const {}

time_t ModuleSnapshotSanitized::Timestamp() const {}

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

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

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

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

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

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

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

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

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

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

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

}  // namespace internal
}  // namespace crashpad