aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dbus/cryptohome/rpc.proto3
-rw-r--r--dbus/login_manager/arc.proto6
-rw-r--r--dbus/login_manager/dbus-constants.h2
3 files changed, 10 insertions, 1 deletions
diff --git a/dbus/cryptohome/rpc.proto b/dbus/cryptohome/rpc.proto
index bd5e6a2..1d81a2d 100644
--- a/dbus/cryptohome/rpc.proto
+++ b/dbus/cryptohome/rpc.proto
@@ -98,6 +98,9 @@ message MountRequest {
// 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;
+ // If set to true, mounts the vault to a temporary location. The mount is not
+ // exposed to the usual locations (/home/user, /home/root).
+ optional bool hidden_mount = 6;
}
// A BaseReply type is used for all cryptohomed responses. A shared base class
diff --git a/dbus/login_manager/arc.proto b/dbus/login_manager/arc.proto
index 7f8cddf..116984a 100644
--- a/dbus/login_manager/arc.proto
+++ b/dbus/login_manager/arc.proto
@@ -28,5 +28,9 @@ message StartArcInstanceRequest {
// and |scan_vendor_priv_app| are ignored when |for_login_screen| is true.
optional bool for_login_screen = 4;
- // Next ID to use: 5
+ // Option to create a server socket in session_manager.
+ // TODO(yusukes): Make this always enabled and then remove the field.
+ optional bool create_server_socket = 5;
+
+ // Next ID to use: 6
}
diff --git a/dbus/login_manager/dbus-constants.h b/dbus/login_manager/dbus-constants.h
index 2ad22fe..aa5aa4f 100644
--- a/dbus/login_manager/dbus-constants.h
+++ b/dbus/login_manager/dbus-constants.h
@@ -21,6 +21,8 @@ const char kSessionManagerStorePolicyForUser[] = "StorePolicyForUser";
const char kSessionManagerStoreUnsignedPolicyForUser[] =
"StoreUnsignedPolicyForUser";
const char kSessionManagerRetrievePolicyForUser[] = "RetrievePolicyForUser";
+const char kSessionManagerRetrievePolicyForUserWithoutSession[] =
+ "RetrievePolicyForUserWithoutSession";
const char kSessionManagerStoreDeviceLocalAccountPolicy[] =
"StoreDeviceLocalAccountPolicy";
const char kSessionManagerRetrieveDeviceLocalAccountPolicy[] =