OLD | NEW |
1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium OS 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 #include "service_constants.h" | 5 #include "service_constants.h" |
6 | 6 |
7 GQuark chromeos_login_error_quark() { | 7 GQuark chromeos_login_error_quark() { |
8 return g_quark_from_static_string("chromeos-login-error-quark"); | 8 return g_quark_from_static_string("chromeos-login-error-quark"); |
9 } | 9 } |
10 | 10 |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 const char* kRequestSuspendSignal = "RequestSuspend"; | 99 const char* kRequestSuspendSignal = "RequestSuspend"; |
100 const char* kRequestShutdownSignal = "RequestShutdown"; | 100 const char* kRequestShutdownSignal = "RequestShutdown"; |
101 const char* kRequestUnlockScreenSignal = "RequestUnlockScreen"; | 101 const char* kRequestUnlockScreenSignal = "RequestUnlockScreen"; |
102 const char* kScreenIsLockedSignal = "ScreenIsLocked"; | 102 const char* kScreenIsLockedSignal = "ScreenIsLocked"; |
103 const char* kScreenIsUnlockedSignal = "ScreenIsUnlocked"; | 103 const char* kScreenIsUnlockedSignal = "ScreenIsUnlocked"; |
104 const char* kCleanShutdown = "CleanShutdown"; | 104 const char* kCleanShutdown = "CleanShutdown"; |
105 const char* kRegisterSuspendDelay = "RegisterSuspendDelay"; | 105 const char* kRegisterSuspendDelay = "RegisterSuspendDelay"; |
106 const char* kUnregisterSuspendDelay = "UnregisterSuspendDelay"; | 106 const char* kUnregisterSuspendDelay = "UnregisterSuspendDelay"; |
107 const char* kSuspendDelay = "SuspendDelay"; | 107 const char* kSuspendDelay = "SuspendDelay"; |
108 const char* kSuspendReady = "SuspendReady"; | 108 const char* kSuspendReady = "SuspendReady"; |
| 109 const char* kBrightnessChangedSignal = "BrightnessChanged"; |
109 } // namespace power_manager | 110 } // namespace power_manager |
OLD | NEW |