Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / content / browser / power_profiler / power_profiler_observer.h
blob027aa3a5606a28e2b4dac0cc8836ff94f0cf00f1
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_POWER_PROFILER_POWER_PROFILER_OBSERVER_H_
6 #define CONTENT_BROWSER_POWER_PROFILER_POWER_PROFILER_OBSERVER_H_
8 #include <vector>
10 #include "base/basictypes.h"
11 #include "content/common/content_export.h"
13 namespace content {
15 struct PowerEvent;
16 typedef std::vector<PowerEvent> PowerEventVector;
18 // A class used to monitor power usage data.
19 class CONTENT_EXPORT PowerProfilerObserver {
20 public:
21 PowerProfilerObserver() {}
22 virtual ~PowerProfilerObserver() {}
24 // This method will be called on the UI thread.
25 virtual void OnPowerEvent(const PowerEventVector&) = 0;
27 private:
28 DISALLOW_COPY_AND_ASSIGN(PowerProfilerObserver);
31 } // namespace content
33 #endif // CONTENT_BROWSER_POWER_PROFILER_POWER_PROFILER_OBSERVER_H_