| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SYSTEM_MONITOR_SYSTEM_MONITOR_H_ | 5 #ifndef BASE_SYSTEM_MONITOR_SYSTEM_MONITOR_H_ |
| 6 #define BASE_SYSTEM_MONITOR_SYSTEM_MONITOR_H_ | 6 #define BASE_SYSTEM_MONITOR_SYSTEM_MONITOR_H_ |
| 7 #pragma once | |
| 8 | 7 |
| 9 #include <string> | 8 #include <string> |
| 10 #include <vector> | 9 #include <vector> |
| 11 | 10 |
| 12 #include "base/base_export.h" | 11 #include "base/base_export.h" |
| 13 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 14 #include "base/tuple.h" | 13 #include "base/tuple.h" |
| 15 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 16 | 15 |
| 17 // Windows HiRes timers drain the battery faster so we need to know the battery | 16 // Windows HiRes timers drain the battery faster so we need to know the battery |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 #endif | 202 #endif |
| 204 | 203 |
| 205 MediaDeviceMap media_device_map_; | 204 MediaDeviceMap media_device_map_; |
| 206 | 205 |
| 207 DISALLOW_COPY_AND_ASSIGN(SystemMonitor); | 206 DISALLOW_COPY_AND_ASSIGN(SystemMonitor); |
| 208 }; | 207 }; |
| 209 | 208 |
| 210 } // namespace base | 209 } // namespace base |
| 211 | 210 |
| 212 #endif // BASE_SYSTEM_MONITOR_SYSTEM_MONITOR_H_ | 211 #endif // BASE_SYSTEM_MONITOR_SYSTEM_MONITOR_H_ |
| OLD | NEW |