1// Copyright 2017 The Chromium 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 5syntax = "proto2"; 6 7option optimize_for = LITE_RUNTIME; 8 9package authpolicy; 10 11// Message sent to Chromium by authpolicy service as a response of successful 12// AuthenticateUser call. Contains information about authenticated user fetched 13// from Active Directory server. 14message ActiveDirectoryAccountData { 15 // Unique id of the user account. Active Directory Object GUID is used. 16 optional string account_id = 1; 17 // Display name of the user. |displayName| key of the Active Directory user 18 // account information is used. 19 optional string display_name = 2; 20 // Given name of the user. AKA first name. |givenName| key of the Active 21 // Directory user account information is used. 22 optional string given_name = 3; 23} 24