| 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/chromeos/memory_pressure_observer_chromeos.h" | 8 #include "base/chromeos/memory_pressure_observer_chromeos.h" |
| 9 #include "chromeos/chromeos_export.h" | 9 #include "chromeos/chromeos_export.h" |
| 10 | 10 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 CHROMEOS_EXPORT extern const char kGuestWallpaperSmall[]; | 81 CHROMEOS_EXPORT extern const char kGuestWallpaperSmall[]; |
| 82 CHROMEOS_EXPORT extern const char kHasChromeOSDiamondKey[]; | 82 CHROMEOS_EXPORT extern const char kHasChromeOSDiamondKey[]; |
| 83 CHROMEOS_EXPORT extern const char kHasChromeOSKeyboard[]; | 83 CHROMEOS_EXPORT extern const char kHasChromeOSKeyboard[]; |
| 84 CHROMEOS_EXPORT extern const char kHomedir[]; | 84 CHROMEOS_EXPORT extern const char kHomedir[]; |
| 85 CHROMEOS_EXPORT extern const char kHostPairingOobe[]; | 85 CHROMEOS_EXPORT extern const char kHostPairingOobe[]; |
| 86 CHROMEOS_EXPORT extern const char kIgnoreUserProfileMappingForTests[]; | 86 CHROMEOS_EXPORT extern const char kIgnoreUserProfileMappingForTests[]; |
| 87 CHROMEOS_EXPORT extern const char kLoginManager[]; | 87 CHROMEOS_EXPORT extern const char kLoginManager[]; |
| 88 CHROMEOS_EXPORT extern const char kLoginProfile[]; | 88 CHROMEOS_EXPORT extern const char kLoginProfile[]; |
| 89 CHROMEOS_EXPORT extern const char kLoginUser[]; | 89 CHROMEOS_EXPORT extern const char kLoginUser[]; |
| 90 CHROMEOS_EXPORT extern const char kMemoryPressureThresholds[]; | 90 CHROMEOS_EXPORT extern const char kMemoryPressureThresholds[]; |
| 91 CHROMEOS_EXPORT extern const char kConservativeThreshold[]; |
| 92 CHROMEOS_EXPORT extern const char kAggressiveCacheDiscardThreshold[]; |
| 93 CHROMEOS_EXPORT extern const char kAggressiveTabDiscardThreshold[]; |
| 94 CHROMEOS_EXPORT extern const char kAggressiveThreshold[]; |
| 91 CHROMEOS_EXPORT extern const char kNaturalScrollDefault[]; | 95 CHROMEOS_EXPORT extern const char kNaturalScrollDefault[]; |
| 92 CHROMEOS_EXPORT extern const char kOobeGuestSession[]; | 96 CHROMEOS_EXPORT extern const char kOobeGuestSession[]; |
| 93 CHROMEOS_EXPORT extern const char kOobeSkipPostLogin[]; | 97 CHROMEOS_EXPORT extern const char kOobeSkipPostLogin[]; |
| 94 CHROMEOS_EXPORT extern const char kOobeTimerInterval[]; | 98 CHROMEOS_EXPORT extern const char kOobeTimerInterval[]; |
| 95 CHROMEOS_EXPORT extern const char kPowerStub[]; | 99 CHROMEOS_EXPORT extern const char kPowerStub[]; |
| 96 CHROMEOS_EXPORT extern const char kShillStub[]; | 100 CHROMEOS_EXPORT extern const char kShillStub[]; |
| 97 CHROMEOS_EXPORT extern const char kSmsTestMessages[]; | 101 CHROMEOS_EXPORT extern const char kSmsTestMessages[]; |
| 98 CHROMEOS_EXPORT extern const char kStubCrosSettings[]; | 102 CHROMEOS_EXPORT extern const char kStubCrosSettings[]; |
| 99 CHROMEOS_EXPORT extern const char kSystemDevMode[]; | 103 CHROMEOS_EXPORT extern const char kSystemDevMode[]; |
| 100 CHROMEOS_EXPORT extern const char kTestAutoUpdateUI[]; | 104 CHROMEOS_EXPORT extern const char kTestAutoUpdateUI[]; |
| 101 CHROMEOS_EXPORT extern const char kWakeOnPackets[]; | 105 CHROMEOS_EXPORT extern const char kWakeOnPackets[]; |
| 102 CHROMEOS_EXPORT extern const char kEnableCaptivePortalBypassProxy[]; | 106 CHROMEOS_EXPORT extern const char kEnableCaptivePortalBypassProxy[]; |
| 103 CHROMEOS_EXPORT extern const char kDisableTimeZoneTrackingOption[]; | 107 CHROMEOS_EXPORT extern const char kDisableTimeZoneTrackingOption[]; |
| 104 | 108 |
| 105 CHROMEOS_EXPORT bool WakeOnWifiEnabled(); | 109 CHROMEOS_EXPORT bool WakeOnWifiEnabled(); |
| 106 | 110 |
| 111 CHROMEOS_EXPORT bool MemoryPressureHandlingEnabled(); |
| 107 CHROMEOS_EXPORT base::MemoryPressureObserverChromeOS::MemoryPressureThresholds | 112 CHROMEOS_EXPORT base::MemoryPressureObserverChromeOS::MemoryPressureThresholds |
| 108 GetMemoryPressureThresholds(); | 113 GetMemoryPressureThresholds(); |
| 109 | 114 |
| 110 } // namespace switches | 115 } // namespace switches |
| 111 } // namespace chromeos | 116 } // namespace chromeos |
| 112 | 117 |
| 113 #endif // CHROMEOS_CHROMEOS_SWITCHES_H_ | 118 #endif // CHROMEOS_CHROMEOS_SWITCHES_H_ |
| OLD | NEW |