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_EVENT_H_
6 #define CONTENT_BROWSER_POWER_PROFILER_POWER_EVENT_H_
8 #include "base/time/time.h"
14 // Total power of SoC. including CPU, GT and others on the chip,
15 // modules which aren't part of the SoC such as the screen are not included.
18 // Whole device power.
21 // Keep this at the end.
27 base::TimeTicks time
; // Time that power data was read.
29 // Power value between last event and this one, in watts.
30 // E.g, event1 {t1, v1}; event2 {t2, v2}; event3 {t3, v3}.
31 // Suppose event1 is the first event the observer received, then event2,
32 // event3. Then v2 is the average power from t1 to t2, v3 is the average
33 // power from t2 to t3. v1 should be ignored since event1 only means the
34 // start point of power profiling.
38 extern const char* kPowerTypeNames
[];
40 } // namespace content
42 #endif // CONTENT_BROWSER_POWER_PROFILER_POWER_EVENT_H_