| 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 20 matching lines...) Expand all Loading... |
| 31 extern const char *kCryptohomeTpmCanAttemptOwnership; | 31 extern const char *kCryptohomeTpmCanAttemptOwnership; |
| 32 extern const char *kCryptohomeTpmClearStoredPassword; | 32 extern const char *kCryptohomeTpmClearStoredPassword; |
| 33 extern const char *kCryptohomeAsyncCheckKey; | 33 extern const char *kCryptohomeAsyncCheckKey; |
| 34 extern const char *kCryptohomeAsyncMigrateKey; | 34 extern const char *kCryptohomeAsyncMigrateKey; |
| 35 extern const char *kCryptohomeAsyncMount; | 35 extern const char *kCryptohomeAsyncMount; |
| 36 extern const char *kCryptohomeAsyncMountGuest; | 36 extern const char *kCryptohomeAsyncMountGuest; |
| 37 extern const char *kCryptohomeAsyncRemove; | 37 extern const char *kCryptohomeAsyncRemove; |
| 38 extern const char *kCryptohomeGetStatusString; | 38 extern const char *kCryptohomeGetStatusString; |
| 39 extern const char *kCryptohomeRemoveTrackedSubdirectories; | 39 extern const char *kCryptohomeRemoveTrackedSubdirectories; |
| 40 extern const char *kCryptohomeAsyncRemoveTrackedSubdirectories; | 40 extern const char *kCryptohomeAsyncRemoveTrackedSubdirectories; |
| 41 extern const char *kCryptohomeDoAutomaticFreeDiskSpaceControl; |
| 42 extern const char *kCryptohomeAsyncDoAutomaticFreeDiskSpaceControl; |
| 41 // Signals | 43 // Signals |
| 42 extern const char *kSignalAsyncCallStatus; | 44 extern const char *kSignalAsyncCallStatus; |
| 43 extern const char *kSignalTpmInitStatus; | 45 extern const char *kSignalTpmInitStatus; |
| 44 } // namespace cryptohome | 46 } // namespace cryptohome |
| 45 | 47 |
| 46 namespace imageburn { | 48 namespace imageburn { |
| 47 extern const char *kImageBurnServiceName; | 49 extern const char *kImageBurnServiceName; |
| 48 extern const char *kImageBurnServicePath; | 50 extern const char *kImageBurnServicePath; |
| 49 extern const char *kImageBurnServiceInterface; | 51 extern const char *kImageBurnServiceInterface; |
| 50 //Methods | 52 //Methods |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 137 |
| 136 namespace chromeos { | 138 namespace chromeos { |
| 137 extern const char *kLibCrosServiceName; | 139 extern const char *kLibCrosServiceName; |
| 138 extern const char *kLibCrosServicePath; | 140 extern const char *kLibCrosServicePath; |
| 139 extern const char *kLibCrosServiceInterface; | 141 extern const char *kLibCrosServiceInterface; |
| 140 // Methods | 142 // Methods |
| 141 extern const char *kResolveNetworkProxy; | 143 extern const char *kResolveNetworkProxy; |
| 142 } // namespace chromeos | 144 } // namespace chromeos |
| 143 | 145 |
| 144 #endif // CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ | 146 #endif // CHROMEOS_DBUS_SERVICE_CONSTANTS_H_ |
| OLD | NEW |