| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "extensions/browser/api/system_cpu/cpu_info_provider.h" | 6 #include "extensions/browser/api/system_cpu/cpu_info_provider.h" |
| 7 #include "extensions/browser/api/system_cpu/system_cpu_api.h" | 7 #include "extensions/browser/api/system_cpu/system_cpu_api.h" |
| 8 #include "extensions/common/features/base_feature_provider.h" | |
| 9 | 8 |
| 10 namespace extensions { | 9 namespace extensions { |
| 11 | 10 |
| 12 using api::system_cpu::CpuInfo; | 11 using api::system_cpu::CpuInfo; |
| 13 | 12 |
| 14 SystemCpuGetInfoFunction::SystemCpuGetInfoFunction() { | 13 SystemCpuGetInfoFunction::SystemCpuGetInfoFunction() { |
| 15 } | 14 } |
| 16 | 15 |
| 17 SystemCpuGetInfoFunction::~SystemCpuGetInfoFunction() { | 16 SystemCpuGetInfoFunction::~SystemCpuGetInfoFunction() { |
| 18 } | 17 } |
| 19 | 18 |
| 20 bool SystemCpuGetInfoFunction::RunAsync() { | 19 bool SystemCpuGetInfoFunction::RunAsync() { |
| 21 CpuInfoProvider::Get()->StartQueryInfo( | 20 CpuInfoProvider::Get()->StartQueryInfo( |
| 22 base::Bind(&SystemCpuGetInfoFunction::OnGetCpuInfoCompleted, this)); | 21 base::Bind(&SystemCpuGetInfoFunction::OnGetCpuInfoCompleted, this)); |
| 23 return true; | 22 return true; |
| 24 } | 23 } |
| 25 | 24 |
| 26 void SystemCpuGetInfoFunction::OnGetCpuInfoCompleted(bool success) { | 25 void SystemCpuGetInfoFunction::OnGetCpuInfoCompleted(bool success) { |
| 27 if (success) | 26 if (success) |
| 28 SetResult(CpuInfoProvider::Get()->cpu_info().ToValue()); | 27 SetResult(CpuInfoProvider::Get()->cpu_info().ToValue()); |
| 29 else | 28 else |
| 30 SetError("Error occurred when querying cpu information."); | 29 SetError("Error occurred when querying cpu information."); |
| 31 SendResponse(success); | 30 SendResponse(success); |
| 32 } | 31 } |
| 33 | 32 |
| 34 } // namespace extensions | 33 } // namespace extensions |
| OLD | NEW |