chromium/extensions/browser/api/system_cpu/cpu_info_provider.h

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef EXTENSIONS_BROWSER_API_SYSTEM_CPU_CPU_INFO_PROVIDER_H_
#define EXTENSIONS_BROWSER_API_SYSTEM_CPU_CPU_INFO_PROVIDER_H_

#include <vector>

#include "base/lazy_instance.h"
#include "build/build_config.h"
#include "extensions/browser/api/system_info/system_info_provider.h"
#include "extensions/common/api/system_cpu.h"

#if defined(ARCH_CPU_X86_FAMILY)
#include "base/cpu.h"
#endif

namespace extensions {

class CpuInfoProvider : public SystemInfoProvider {};

}  // namespace extensions

#endif  // EXTENSIONS_BROWSER_API_SYSTEM_CPU_CPU_INFO_PROVIDER_H_