aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLutz Justen <ljusten@chromium.org>2017-06-06 10:49:21 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-06-06 10:49:21 +0000
commit6364d876910ba2dec7625370f62b181a6309d672 (patch)
treeed67348c8e99464db1f66414144709558906fc3b
parent27c51861abed5f5a0c81be0208e39aa76ceca8b9 (diff)
parent3b181af255a7dff937fbc904d7f4a4f34ff11604 (diff)
downloadsystem_api-6364d876910ba2dec7625370f62b181a6309d672.tar.gz
Remove authpolicy/active_directory_account_data.proto am: 638d4895cd am: a04b2c6320 am: 252af728a8 am: f2931f1ad1oreo-dr1-dev
am: 3b181af255 Change-Id: I73b5b836cb6c81cc180116dee8c28c17ed1a0add
-rw-r--r--dbus/authpolicy/active_directory_account_data.proto30
-rw-r--r--system_api.gyp6
2 files changed, 0 insertions, 36 deletions
diff --git a/dbus/authpolicy/active_directory_account_data.proto b/dbus/authpolicy/active_directory_account_data.proto
deleted file mode 100644
index 79325f6..0000000
--- a/dbus/authpolicy/active_directory_account_data.proto
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2017 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-syntax = "proto2";
-
-option optimize_for = LITE_RUNTIME;
-
-package authpolicy;
-
-// TODO(ljusten): Remove this file as soon as Chrome uses
-// active_directory_info.proto. crbug.com/712720.
-
-// Message sent to Chromium by authpolicy service as a response of successful
-// AuthenticateUser call. Contains information about authenticated user fetched
-// from Active Directory server.
-message ActiveDirectoryAccountData {
- // Unique id of the user account. Taken from the objectGUID property of the
- // Active Directory user account information.
- optional string account_id = 1;
- // Display name of the user. Taken from the displayName property of the Active
- // account information.
- optional string display_name = 2;
- // Given name of the user. AKA first name. Taken from givenName property of
- // the Active Directory user account information.
- optional string given_name = 3;
- // Logon name of the user (without @realm). Taken from the sAMAccountName
- // property of the Active Directory user account information.
- optional string sam_account_name = 4;
-}
diff --git a/system_api.gyp b/system_api.gyp
index fbe6773..9648010 100644
--- a/system_api.gyp
+++ b/system_api.gyp
@@ -95,9 +95,6 @@
'proto_out_dir': 'include/authpolicy/proto_bindings',
},
'sources': [
- # TODO(ljusten): Remove this file as soon as Chrome uses
- # active_directory_info.proto. crbug.com/712720.
- '<(proto_in_dir)/active_directory_account_data.proto',
'<(proto_in_dir)/active_directory_info.proto',
],
'includes': ['../../platform2/common-mk/protoc.gypi'],
@@ -110,9 +107,6 @@
'system_api-authpolicy-protos-gen',
],
'sources': [
- # TODO(ljusten): Remove this file as soon as Chrome uses
- # active_directory_info.proto. crbug.com/712720.
- '<(SHARED_INTERMEDIATE_DIR)/include/authpolicy/proto_bindings/active_directory_account_data.pb.cc',
'<(SHARED_INTERMEDIATE_DIR)/include/authpolicy/proto_bindings/active_directory_info.pb.cc',
]
},