| 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 10 matching lines...) Expand all Loading... |
| 21 extern const char *kCryptohomeGetSystemSalt; | 21 extern const char *kCryptohomeGetSystemSalt; |
| 22 extern const char *kCryptohomeIsMounted; | 22 extern const char *kCryptohomeIsMounted; |
| 23 extern const char *kCryptohomeMount; | 23 extern const char *kCryptohomeMount; |
| 24 extern const char *kCryptohomeMountGuest; | 24 extern const char *kCryptohomeMountGuest; |
| 25 extern const char *kCryptohomeUnmount; | 25 extern const char *kCryptohomeUnmount; |
| 26 extern const char *kCryptohomeTpmIsReady; | 26 extern const char *kCryptohomeTpmIsReady; |
| 27 extern const char *kCryptohomeTpmIsEnabled; | 27 extern const char *kCryptohomeTpmIsEnabled; |
| 28 extern const char *kCryptohomeTpmGetPassword; | 28 extern const char *kCryptohomeTpmGetPassword; |
| 29 } // namespace cryptohome | 29 } // namespace cryptohome |
| 30 | 30 |
| 31 namespace imageburn { |
| 32 extern const char *kImageBurnServiceName; |
| 33 extern const char *kImageBurnServicePath; |
| 34 extern const char *kImageBurnServiceInterface; |
| 35 //Methods |
| 36 extern const char *kBurnImage; |
| 37 //Signals |
| 38 extern const char *kSignalBurnFinishedName; |
| 39 extern const char *kSignalBurnUpdateName; |
| 40 } // namespace imageburn |
| 41 |
| 31 namespace login_manager { | 42 namespace login_manager { |
| 32 extern const char *kSessionManagerInterface; | 43 extern const char *kSessionManagerInterface; |
| 33 extern const char *kSessionManagerServicePath; | 44 extern const char *kSessionManagerServicePath; |
| 34 extern const char *kSessionManagerServiceName; | 45 extern const char *kSessionManagerServiceName; |
| 35 // Methods | 46 // Methods |
| 36 extern const char *kSessionManagerEmitLoginPromptReady; | 47 extern const char *kSessionManagerEmitLoginPromptReady; |
| 37 extern const char *kSessionManagerStartSession; | 48 extern const char *kSessionManagerStartSession; |
| 38 extern const char *kSessionManagerStopSession; | 49 extern const char *kSessionManagerStopSession; |
| 39 extern const char *kSessionManagerRestartJob; | 50 extern const char *kSessionManagerRestartJob; |
| 40 extern const char *kSessionManagerTpmIsReady; | 51 extern const char *kSessionManagerTpmIsReady; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 namespace power_manager { | 84 namespace power_manager { |
| 74 extern const char* kPowerManagerInterface; | 85 extern const char* kPowerManagerInterface; |
| 75 extern const char* kRequestLockScreenSignal; | 86 extern const char* kRequestLockScreenSignal; |
| 76 extern const char* kRequestSuspendSignal; | 87 extern const char* kRequestSuspendSignal; |
| 77 extern const char* kRequestUnlockScreenSignal; | 88 extern const char* kRequestUnlockScreenSignal; |
| 78 extern const char* kScreenIsLockedSignal; | 89 extern const char* kScreenIsLockedSignal; |
| 79 extern const char* kScreenIsUnlockedSignal; | 90 extern const char* kScreenIsUnlockedSignal; |
| 80 } // namespace power_manager | 91 } // namespace power_manager |
| 81 | 92 |
| 82 #endif // CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ | 93 #endif // CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ |
| OLD | NEW |