| 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() |
| 11 GQuark chromeos_login_error_quark(); | 11 GQuark chromeos_login_error_quark(); |
| 12 | 12 |
| 13 namespace cryptohome { | 13 namespace cryptohome { |
| 14 extern const char *kCryptohomeInterface; | 14 extern const char *kCryptohomeInterface; |
| 15 extern const char *kCryptohomeServicePath; | 15 extern const char *kCryptohomeServicePath; |
| 16 extern const char *kCryptohomeServiceName; | 16 extern const char *kCryptohomeServiceName; |
| 17 // Methods | 17 // Methods |
| 18 extern const char *kCryptohomeCheckKey; | 18 extern const char *kCryptohomeCheckKey; |
| 19 extern const char *kCryptohomeMigrateKey; |
| 20 extern const char *kCryptohomeRemove; |
| 21 extern const char *kCryptohomeGetSystemSalt; |
| 19 extern const char *kCryptohomeIsMounted; | 22 extern const char *kCryptohomeIsMounted; |
| 20 extern const char *kCryptohomeMount; | 23 extern const char *kCryptohomeMount; |
| 21 extern const char *kCryptohomeUnmount; | 24 extern const char *kCryptohomeUnmount; |
| 22 } // namespace cryptohome | 25 } // namespace cryptohome |
| 23 | 26 |
| 24 namespace login_manager { | 27 namespace login_manager { |
| 25 extern const char *kSessionManagerInterface; | 28 extern const char *kSessionManagerInterface; |
| 26 extern const char *kSessionManagerServicePath; | 29 extern const char *kSessionManagerServicePath; |
| 27 extern const char *kSessionManagerServiceName; | 30 extern const char *kSessionManagerServiceName; |
| 28 // Methods | 31 // Methods |
| (...skipping 28 matching lines...) Expand all Loading... |
| 57 | 60 |
| 58 namespace power_manager { | 61 namespace power_manager { |
| 59 extern const char* kPowerManagerInterface; | 62 extern const char* kPowerManagerInterface; |
| 60 extern const char* kRequestLockScreenSignal; | 63 extern const char* kRequestLockScreenSignal; |
| 61 extern const char* kRequestUnlockScreenSignal; | 64 extern const char* kRequestUnlockScreenSignal; |
| 62 extern const char* kScreenIsLockedSignal; | 65 extern const char* kScreenIsLockedSignal; |
| 63 extern const char* kScreenIsUnlockedSignal; | 66 extern const char* kScreenIsUnlockedSignal; |
| 64 } // namespace screen_lock | 67 } // namespace screen_lock |
| 65 | 68 |
| 66 #endif // CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ | 69 #endif // CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ |
| OLD | NEW |