// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/browser/api/system_cpu/cpu_info_provider.h" #include <stdint.h> #include <cstdio> #include <sstream> #include "base/files/file_util.h" #include "base/format_macros.h" namespace extensions { namespace { const char kProcStat[] = …; } // namespace bool CpuInfoProvider::QueryCpuTimePerProcessor( std::vector<api::system_cpu::ProcessorInfo>* infos) { … } } // namespace extensions