| Index: extensions/browser/api/system_cpu/cpu_info_provider.h
|
| diff --git a/chrome/browser/extensions/api/system_cpu/cpu_info_provider.h b/extensions/browser/api/system_cpu/cpu_info_provider.h
|
| similarity index 74%
|
| rename from chrome/browser/extensions/api/system_cpu/cpu_info_provider.h
|
| rename to extensions/browser/api/system_cpu/cpu_info_provider.h
|
| index 4f73a2dd95a969fa07816a5e8357000bfcd1f7e6..830c279332b94ad578012537a560aba3be16a50c 100644
|
| --- a/chrome/browser/extensions/api/system_cpu/cpu_info_provider.h
|
| +++ b/extensions/browser/api/system_cpu/cpu_info_provider.h
|
| @@ -2,15 +2,15 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_BROWSER_EXTENSIONS_API_SYSTEM_CPU_CPU_INFO_PROVIDER_H_
|
| -#define CHROME_BROWSER_EXTENSIONS_API_SYSTEM_CPU_CPU_INFO_PROVIDER_H_
|
| +#ifndef EXTENSIONS_BROWSER_API_SYSTEM_CPU_CPU_INFO_PROVIDER_H_
|
| +#define EXTENSIONS_BROWSER_API_SYSTEM_CPU_CPU_INFO_PROVIDER_H_
|
|
|
| #include <vector>
|
|
|
| #include "base/cpu.h"
|
| #include "base/lazy_instance.h"
|
| -#include "chrome/browser/extensions/api/system_info/system_info_provider.h"
|
| -#include "chrome/common/extensions/api/system_cpu.h"
|
| +#include "extensions/browser/api/system_info/system_info_provider.h"
|
| +#include "extensions/common/api/system_cpu.h"
|
|
|
| namespace extensions {
|
|
|
| @@ -19,7 +19,7 @@ class CpuInfoProvider : public SystemInfoProvider {
|
| // Return the single shared instance of CpuInfoProvider.
|
| static CpuInfoProvider* Get();
|
|
|
| - const api::system_cpu::CpuInfo& cpu_info() const;
|
| + const core_api::system_cpu::CpuInfo& cpu_info() const;
|
|
|
| static void InitializeForTesting(scoped_refptr<CpuInfoProvider> provider);
|
|
|
| @@ -32,7 +32,7 @@ class CpuInfoProvider : public SystemInfoProvider {
|
| // Platform specific implementation for querying the CPU time information
|
| // for each processor.
|
| virtual bool QueryCpuTimePerProcessor(
|
| - std::vector<linked_ptr<api::system_cpu::ProcessorInfo> >* infos);
|
| + std::vector<linked_ptr<core_api::system_cpu::ProcessorInfo> >* infos);
|
|
|
| // Overriden from SystemInfoProvider.
|
| virtual bool QueryInfo() OVERRIDE;
|
| @@ -47,7 +47,7 @@ class CpuInfoProvider : public SystemInfoProvider {
|
| // |info_| is accessed on the UI thread while |is_waiting_for_completion_| is
|
| // false and on the sequenced worker pool while |is_waiting_for_completion_|
|
| // is true.
|
| - api::system_cpu::CpuInfo info_;
|
| + core_api::system_cpu::CpuInfo info_;
|
|
|
| static base::LazyInstance<scoped_refptr<CpuInfoProvider> > provider_;
|
| base::CPU cpu_;
|
| @@ -57,4 +57,4 @@ class CpuInfoProvider : public SystemInfoProvider {
|
|
|
| } // namespace extensions
|
|
|
| -#endif // CHROME_BROWSER_EXTENSIONS_API_SYSTEM_CPU_CPU_INFO_PROVIDER_H_
|
| +#endif // EXTENSIONS_BROWSER_API_SYSTEM_CPU_CPU_INFO_PROVIDER_H_
|
|
|