PowerProfilerService   54 content/browser/devtools/devtools_power_handler.cc   if (PowerProfilerService::GetInstance()->IsAvailable()) {
PowerProfilerService   55 content/browser/devtools/devtools_power_handler.cc     PowerProfilerService::GetInstance()->AddObserver(this);
PowerProfilerService   64 content/browser/devtools/devtools_power_handler.cc   if (PowerProfilerService::GetInstance()->IsAvailable()) {
PowerProfilerService   65 content/browser/devtools/devtools_power_handler.cc     PowerProfilerService::GetInstance()->RemoveObserver(this);
PowerProfilerService   77 content/browser/devtools/devtools_power_handler.cc                      PowerProfilerService::GetInstance()->IsAvailable());
PowerProfilerService   22 content/browser/power_profiler/power_profiler_service.cc PowerProfilerService::PowerProfilerService()
PowerProfilerService   37 content/browser/power_profiler/power_profiler_service.cc PowerProfilerService::PowerProfilerService(
PowerProfilerService   51 content/browser/power_profiler/power_profiler_service.cc PowerProfilerService::~PowerProfilerService() {
PowerProfilerService   54 content/browser/power_profiler/power_profiler_service.cc bool PowerProfilerService::IsAvailable() {
PowerProfilerService   58 content/browser/power_profiler/power_profiler_service.cc PowerProfilerService* PowerProfilerService::GetInstance() {
PowerProfilerService   59 content/browser/power_profiler/power_profiler_service.cc   return Singleton<PowerProfilerService>::get();
PowerProfilerService   62 content/browser/power_profiler/power_profiler_service.cc void PowerProfilerService::AddObserver(PowerProfilerObserver* observer) {
PowerProfilerService   71 content/browser/power_profiler/power_profiler_service.cc void PowerProfilerService::RemoveObserver(PowerProfilerObserver* observer) {
PowerProfilerService   78 content/browser/power_profiler/power_profiler_service.cc void PowerProfilerService::Start() {
PowerProfilerService   86 content/browser/power_profiler/power_profiler_service.cc       sample_period_, this, &PowerProfilerService::QueryData);
PowerProfilerService   89 content/browser/power_profiler/power_profiler_service.cc void PowerProfilerService::Stop() {
PowerProfilerService   96 content/browser/power_profiler/power_profiler_service.cc void PowerProfilerService::QueryData() {
PowerProfilerService   98 content/browser/power_profiler/power_profiler_service.cc       FROM_HERE, base::Bind(&PowerProfilerService::QueryDataOnTaskRunner,
PowerProfilerService  102 content/browser/power_profiler/power_profiler_service.cc void PowerProfilerService::Notify(const PowerEventVector& events) {
PowerProfilerService  106 content/browser/power_profiler/power_profiler_service.cc void PowerProfilerService::QueryDataOnTaskRunner() {
PowerProfilerService  114 content/browser/power_profiler/power_profiler_service.cc         &PowerProfilerService::Notify, base::Unretained(this), events));
PowerProfilerService   20 content/browser/power_profiler/power_profiler_service.h class CONTENT_EXPORT PowerProfilerService {
PowerProfilerService   22 content/browser/power_profiler/power_profiler_service.h   static PowerProfilerService* GetInstance();
PowerProfilerService   30 content/browser/power_profiler/power_profiler_service.h   virtual ~PowerProfilerService();
PowerProfilerService   39 content/browser/power_profiler/power_profiler_service.h   friend struct DefaultSingletonTraits<PowerProfilerService>;
PowerProfilerService   42 content/browser/power_profiler/power_profiler_service.h   PowerProfilerService();
PowerProfilerService   44 content/browser/power_profiler/power_profiler_service.h   PowerProfilerService(scoped_ptr<PowerDataProvider> provider,
PowerProfilerService   61 content/browser/power_profiler/power_profiler_service.h   base::RepeatingTimer<PowerProfilerService> query_power_timer_;
PowerProfilerService   72 content/browser/power_profiler/power_profiler_service.h   DISALLOW_COPY_AND_ASSIGN(PowerProfilerService);
PowerProfilerService   83 content/browser/power_profiler/power_profiler_service_unittest.cc     service_.reset(new PowerProfilerService(
PowerProfilerService  114 content/browser/power_profiler/power_profiler_service_unittest.cc   scoped_ptr<PowerProfilerService> service_;