chromium/third_party/crashpad/crashpad/snapshot/test/test_process_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/exception_snapshot.h"
#include "snapshot/system_snapshot.h"
#include "snapshot/test/test_process_snapshot.h"

namespace crashpad {
namespace test {

TestProcessSnapshot::TestProcessSnapshot()
    :{}

TestProcessSnapshot::~TestProcessSnapshot() {}

crashpad::ProcessID TestProcessSnapshot::ProcessID() const {}

crashpad::ProcessID TestProcessSnapshot::ParentProcessID() const {}

void TestProcessSnapshot::SnapshotTime(timeval* snapshot_time) const {}

void TestProcessSnapshot::ProcessStartTime(timeval* start_time) const {}

void TestProcessSnapshot::ProcessCPUTimes(timeval* user_time,
                                          timeval* system_time) const {}

void TestProcessSnapshot::ReportID(UUID* report_id) const {}

void TestProcessSnapshot::ClientID(UUID* client_id) const {}

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

const SystemSnapshot* TestProcessSnapshot::System() const {}

std::vector<const ThreadSnapshot*> TestProcessSnapshot::Threads() const {}

std::vector<const ModuleSnapshot*> TestProcessSnapshot::Modules() const {}

std::vector<UnloadedModuleSnapshot> TestProcessSnapshot::UnloadedModules()
    const {}

const ExceptionSnapshot* TestProcessSnapshot::Exception() const {}

std::vector<const MemoryMapRegionSnapshot*> TestProcessSnapshot::MemoryMap()
    const {}

std::vector<HandleSnapshot> TestProcessSnapshot::Handles() const {}

std::vector<const MemorySnapshot*> TestProcessSnapshot::ExtraMemory() const {}

const ProcessMemory* TestProcessSnapshot::Memory() const {}

}  // namespace test
}  // namespace crashpad