aboutsummaryrefslogtreecommitdiff
path: root/dbus
diff options
context:
space:
mode:
Diffstat (limited to 'dbus')
-rw-r--r--dbus/authpolicy/active_directory_info.proto5
-rw-r--r--dbus/cryptohome/rpc.proto3
2 files changed, 7 insertions, 1 deletions
diff --git a/dbus/authpolicy/active_directory_info.proto b/dbus/authpolicy/active_directory_info.proto
index a07278b..def9b11 100644
--- a/dbus/authpolicy/active_directory_info.proto
+++ b/dbus/authpolicy/active_directory_info.proto
@@ -97,7 +97,10 @@ message ActiveDirectoryAccountInfo {
// the userAccountControl property of the Active Directory user account
// information. Used in authpolicyd only, unused in Chrome.
optional uint32 user_account_control = 6;
- // Next ID to use: 7
+ // Common name of the user, e.g. "John Doe [jdoe]". Taken from the commonName
+ // property of the Active Directory user account information.
+ optional string common_name = 7;
+ // Next ID to use: 8
}
// Message sent to Chromium by authpolicy service as a response to a successful
diff --git a/dbus/cryptohome/rpc.proto b/dbus/cryptohome/rpc.proto
index 30d8760..bd5e6a2 100644
--- a/dbus/cryptohome/rpc.proto
+++ b/dbus/cryptohome/rpc.proto
@@ -95,6 +95,9 @@ message MountRequest {
// If set to true, mounts the existing ecryptfs vault to a temporary location
// while setting up a new dircrypto directory.
optional bool to_migrate_from_ecryptfs = 4;
+ // Performs a public mount, which is used for a Kiosk session. Credentials are
+ // not needed in the request; they are synthesized by cryptohomed from id.
+ optional bool public_mount = 5;
}
// A BaseReply type is used for all cryptohomed responses. A shared base class