| Index: chrome/common/extensions/api/system_info_cpu.idl
|
| diff --git a/chrome/common/extensions/api/system_info_cpu.idl b/chrome/common/extensions/api/system_info_cpu.idl
|
| index 99cdcada64b45c2be7419599b180b5c3fa99ed4c..ee61007b39068acbef424f24bacaef011480ba53 100644
|
| --- a/chrome/common/extensions/api/system_info_cpu.idl
|
| +++ b/chrome/common/extensions/api/system_info_cpu.idl
|
| @@ -14,24 +14,10 @@ namespace systemInfo.cpu {
|
| DOMString modelName;
|
| };
|
|
|
| - dictionary CpuUpdateInfo {
|
| - // The average usage percent of all processors, as a number
|
| - // between 0 and 100.
|
| - double averageUsage;
|
| - // The CPU usage array for each logic processor.
|
| - double[] usagePerProcessor;
|
| - };
|
| -
|
| callback CpuInfoCallback = void (CpuInfo info);
|
|
|
| interface Functions {
|
| // Queries basic CPU information of the system.
|
| static void get(CpuInfoCallback callback);
|
| };
|
| -
|
| - interface Events {
|
| - // Fired periodically to report CPU history usage information. The default
|
| - // period interval is 1 seconds.
|
| - static void onUpdated(CpuUpdateInfo info);
|
| - };
|
| };
|
|
|