chromium/third_party/crashpad/crashpad/snapshot/test/test_system_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_system_snapshot.h"

namespace crashpad {
namespace test {

TestSystemSnapshot::TestSystemSnapshot()
    :{}

TestSystemSnapshot::~TestSystemSnapshot() {}

CPUArchitecture TestSystemSnapshot::GetCPUArchitecture() const {}

uint32_t TestSystemSnapshot::CPURevision() const {}

uint8_t TestSystemSnapshot::CPUCount() const {}

std::string TestSystemSnapshot::CPUVendor() const {}

void TestSystemSnapshot::CPUFrequency(uint64_t* current_hz,
                                      uint64_t* max_hz) const {}

uint32_t TestSystemSnapshot::CPUX86Signature() const {}

uint64_t TestSystemSnapshot::CPUX86Features() const {}

uint64_t TestSystemSnapshot::CPUX86ExtendedFeatures() const {}

uint32_t TestSystemSnapshot::CPUX86Leaf7Features() const {}

bool TestSystemSnapshot::CPUX86SupportsDAZ() const {}

SystemSnapshot::OperatingSystem TestSystemSnapshot::GetOperatingSystem() const {}

bool TestSystemSnapshot::OSServer() const {}

void TestSystemSnapshot::OSVersion(
    int* major, int* minor, int* bugfix, std::string* build) const {}

std::string TestSystemSnapshot::OSVersionFull() const {}

bool TestSystemSnapshot::NXEnabled() const {}

std::string TestSystemSnapshot::MachineDescription() const {}

void TestSystemSnapshot::TimeZone(DaylightSavingTimeStatus* dst_status,
                                  int* standard_offset_seconds,
                                  int* daylight_offset_seconds,
                                  std::string* standard_name,
                                  std::string* daylight_name) const {}

uint64_t TestSystemSnapshot::AddressMask() const {}

}  // namespace test
}  // namespace crashpad