• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2016 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef SYSTEM_API_DBUS_AUTHPOLICY_DBUS_CONSTANTS_H_
6 #define SYSTEM_API_DBUS_AUTHPOLICY_DBUS_CONSTANTS_H_
7 
8 namespace authpolicy {
9 
10 const char kAuthPolicyInterface[] = "org.chromium.AuthPolicy";
11 const char kAuthPolicyServicePath[] = "/org/chromium/AuthPolicy";
12 const char kAuthPolicyServiceName[] = "org.chromium.AuthPolicy";
13 // Methods
14 const char kAuthPolicyAuthenticateUser[] = "AuthenticateUser";
15 const char kAuthPolicyGetUserStatus[] = "GetUserStatus";
16 const char kAuthPolicyJoinADDomain[] = "JoinADDomain";
17 const char kAuthPolicyRefreshUserPolicy[] = "RefreshUserPolicy";
18 const char kAuthPolicyRefreshDevicePolicy[] = "RefreshDevicePolicy";
19 
20 } // namespace authpolicy
21 
22 #endif // SYSTEM_API_DBUS_AUTHPOLICY_DBUS_CONSTANTS_H_
23