| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_POWER_MONITOR_POWER_MONITOR_DEVICE_SOURCE_H_ | 5 #ifndef BASE_POWER_MONITOR_POWER_MONITOR_DEVICE_SOURCE_H_ |
| 6 #define BASE_POWER_MONITOR_POWER_MONITOR_DEVICE_SOURCE_H_ | 6 #define BASE_POWER_MONITOR_POWER_MONITOR_DEVICE_SOURCE_H_ |
| 7 | 7 |
| 8 #include "base/base_export.h" | 8 #include "base/base_export.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | |
| 11 #include "base/observer_list_threadsafe.h" | |
| 12 #include "base/power_monitor/power_monitor_source.h" | 10 #include "base/power_monitor/power_monitor_source.h" |
| 13 #include "base/power_monitor/power_observer.h" | 11 #include "base/power_monitor/power_observer.h" |
| 14 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 15 | 13 |
| 16 #if defined(OS_WIN) | 14 #if defined(OS_WIN) |
| 17 #include <windows.h> | 15 #include <windows.h> |
| 18 #endif // !OS_WIN | 16 #endif // !OS_WIN |
| 19 | 17 |
| 20 #if defined(OS_IOS) | 18 #if defined(OS_IOS) |
| 21 #include <objc/runtime.h> | 19 #include <objc/runtime.h> |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 #if defined(OS_WIN) | 89 #if defined(OS_WIN) |
| 92 PowerMessageWindow power_message_window_; | 90 PowerMessageWindow power_message_window_; |
| 93 #endif | 91 #endif |
| 94 | 92 |
| 95 DISALLOW_COPY_AND_ASSIGN(PowerMonitorDeviceSource); | 93 DISALLOW_COPY_AND_ASSIGN(PowerMonitorDeviceSource); |
| 96 }; | 94 }; |
| 97 | 95 |
| 98 } // namespace base | 96 } // namespace base |
| 99 | 97 |
| 100 #endif // BASE_POWER_MONITOR_POWER_MONITOR_DEVICE_SOURCE_H_ | 98 #endif // BASE_POWER_MONITOR_POWER_MONITOR_DEVICE_SOURCE_H_ |
| OLD | NEW |