aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin TerAvest <teravest@chromium.org>2017-03-21 12:26:02 -0600
committerchrome-bot <chrome-bot@chromium.org>2017-03-22 23:50:12 -0700
commit2250c82b8f27594541ff6ae63381c751c866b86f (patch)
treeec6c321084e3870b57c102dd2fcbec35e95a722e
parent8293e5bf0afeee9d7e81a24cee6803582fe4b0a1 (diff)
downloadsystem_api-2250c82b8f27594541ff6ae63381c751c866b86f.tar.gz
Add constants for D-Bus KioskAppService.
This is one of a series of changes to break out GetKioskAppRequiredPlatformVersion to its own service. This method will be implemented by both LibCrosService and KioskAppService until all clients are migrated over. BUG=chromium:703229 TEST=None Change-Id: I6c493e93fb737ef9bf9943e7f114f122e945ec40 Reviewed-on: https://chromium-review.googlesource.com/457596 Commit-Ready: Justin TerAvest <teravest@chromium.org> Tested-by: Justin TerAvest <teravest@chromium.org> Reviewed-by: Dan Erat <derat@chromium.org>
-rw-r--r--dbus/service_constants.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/dbus/service_constants.h b/dbus/service_constants.h
index 86d6b0a..3d8ca94 100644
--- a/dbus/service_constants.h
+++ b/dbus/service_constants.h
@@ -117,6 +117,14 @@ const char kLivenessServiceInterface[] =
// Methods
const char kLivenessServiceCheckLivenessMethod[] = "CheckLiveness";
+const char kKioskAppServiceName[] = "org.chromium.KioskAppService";
+const char kKioskAppServicePath[] = "/org/chromium/KioskAppService";
+const char kKioskAppServiceInterface[] =
+ "org.chromium.KioskAppServiceInterface";
+// Methods
+const char kKioskAppServiceGetRequiredPlatformVersionMethod[] =
+ "GetRequiredPlatformVersion";
+
} // namespace chromeos
namespace cromo {