| 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 #ifndef CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ | 4 #ifndef CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ |
| 5 #define CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ | 5 #define CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ |
| 6 | 6 |
| 7 #include <glib.h> | 7 #include <glib.h> |
| 8 | 8 |
| 9 // To conform to the GError conventions... | 9 // To conform to the GError conventions... |
| 10 #define CHROMEOS_LOGIN_ERROR chromeos_login_error_quark() | 10 #define CHROMEOS_LOGIN_ERROR chromeos_login_error_quark() |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 extern const char* kRequestSuspendSignal; | 119 extern const char* kRequestSuspendSignal; |
| 120 extern const char* kRequestShutdownSignal; | 120 extern const char* kRequestShutdownSignal; |
| 121 extern const char* kRequestUnlockScreenSignal; | 121 extern const char* kRequestUnlockScreenSignal; |
| 122 extern const char* kScreenIsLockedSignal; | 122 extern const char* kScreenIsLockedSignal; |
| 123 extern const char* kScreenIsUnlockedSignal; | 123 extern const char* kScreenIsUnlockedSignal; |
| 124 extern const char* kCleanShutdown; | 124 extern const char* kCleanShutdown; |
| 125 extern const char* kRegisterSuspendDelay; | 125 extern const char* kRegisterSuspendDelay; |
| 126 extern const char* kUnregisterSuspendDelay; | 126 extern const char* kUnregisterSuspendDelay; |
| 127 extern const char* kSuspendDelay; | 127 extern const char* kSuspendDelay; |
| 128 extern const char* kSuspendReady; | 128 extern const char* kSuspendReady; |
| 129 extern const char* kBrightnessChangedSignal; |
| 129 } // namespace power_manager | 130 } // namespace power_manager |
| 130 | 131 |
| 131 #endif // CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ | 132 #endif // CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ |
| OLD | NEW |