| 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 CHROMEOS_CHROMEOS_SWITCHES_H_ | 5 #ifndef CHROMEOS_CHROMEOS_SWITCHES_H_ |
| 6 #define CHROMEOS_CHROMEOS_SWITCHES_H_ | 6 #define CHROMEOS_CHROMEOS_SWITCHES_H_ |
| 7 | 7 |
| 8 #include "base/memory/memory_pressure_monitor_chromeos.h" | 8 #include "base/memory/memory_pressure_monitor_chromeos.h" |
| 9 #include "chromeos/chromeos_export.h" | 9 #include "chromeos/chromeos_export.h" |
| 10 | 10 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 CHROMEOS_EXPORT extern const char kOobeBootstrappingMaster[]; | 117 CHROMEOS_EXPORT extern const char kOobeBootstrappingMaster[]; |
| 118 CHROMEOS_EXPORT extern const char kOobeGuestSession[]; | 118 CHROMEOS_EXPORT extern const char kOobeGuestSession[]; |
| 119 CHROMEOS_EXPORT extern const char kOobeSkipPostLogin[]; | 119 CHROMEOS_EXPORT extern const char kOobeSkipPostLogin[]; |
| 120 CHROMEOS_EXPORT extern const char kOobeTimerInterval[]; | 120 CHROMEOS_EXPORT extern const char kOobeTimerInterval[]; |
| 121 CHROMEOS_EXPORT extern const char kPowerStub[]; | 121 CHROMEOS_EXPORT extern const char kPowerStub[]; |
| 122 CHROMEOS_EXPORT extern const char kShillStub[]; | 122 CHROMEOS_EXPORT extern const char kShillStub[]; |
| 123 CHROMEOS_EXPORT extern const char kSmsTestMessages[]; | 123 CHROMEOS_EXPORT extern const char kSmsTestMessages[]; |
| 124 CHROMEOS_EXPORT extern const char kStubCrosSettings[]; | 124 CHROMEOS_EXPORT extern const char kStubCrosSettings[]; |
| 125 CHROMEOS_EXPORT extern const char kSystemDevMode[]; | 125 CHROMEOS_EXPORT extern const char kSystemDevMode[]; |
| 126 CHROMEOS_EXPORT extern const char kTestAutoUpdateUI[]; | 126 CHROMEOS_EXPORT extern const char kTestAutoUpdateUI[]; |
| 127 CHROMEOS_EXPORT extern const char kAttestationServer[]; |
| 127 CHROMEOS_EXPORT extern const char kWakeOnWifiPacket[]; | 128 CHROMEOS_EXPORT extern const char kWakeOnWifiPacket[]; |
| 128 | 129 |
| 129 // Returns true if the system should wake in response to wifi traffic. | 130 // Returns true if the system should wake in response to wifi traffic. |
| 130 CHROMEOS_EXPORT bool WakeOnWifiEnabled(); | 131 CHROMEOS_EXPORT bool WakeOnWifiEnabled(); |
| 131 | 132 |
| 132 // Returns true if memory pressure handling is enabled. | 133 // Returns true if memory pressure handling is enabled. |
| 133 CHROMEOS_EXPORT bool MemoryPressureHandlingEnabled(); | 134 CHROMEOS_EXPORT bool MemoryPressureHandlingEnabled(); |
| 134 | 135 |
| 135 // Returns thresholds for determining if the system is under memory pressure. | 136 // Returns thresholds for determining if the system is under memory pressure. |
| 136 CHROMEOS_EXPORT base::chromeos::MemoryPressureMonitor::MemoryPressureThresholds | 137 CHROMEOS_EXPORT base::chromeos::MemoryPressureMonitor::MemoryPressureThresholds |
| 137 GetMemoryPressureThresholds(); | 138 GetMemoryPressureThresholds(); |
| 138 | 139 |
| 139 // Returns true if flags are set indicating that stored user keys are being | 140 // Returns true if flags are set indicating that stored user keys are being |
| 140 // converted to GAIA IDs. | 141 // converted to GAIA IDs. |
| 141 CHROMEOS_EXPORT bool IsGaiaIdMigrationStarted(); | 142 CHROMEOS_EXPORT bool IsGaiaIdMigrationStarted(); |
| 142 | 143 |
| 143 } // namespace switches | 144 } // namespace switches |
| 144 } // namespace chromeos | 145 } // namespace chromeos |
| 145 | 146 |
| 146 #endif // CHROMEOS_CHROMEOS_SWITCHES_H_ | 147 #endif // CHROMEOS_CHROMEOS_SWITCHES_H_ |
| OLD | NEW |