aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-06-07 07:57:30 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-06-07 07:57:30 +0000
commite337d3b4582229fda285deda7ee514d807aef2b3 (patch)
treeed67348c8e99464db1f66414144709558906fc3b
parent63368a4e839d5048906d126607c1b76bcdd4fb30 (diff)
parent6364d876910ba2dec7625370f62b181a6309d672 (diff)
downloadsystem_api-oreo-dr1-release.tar.gz
Change-Id: I098851ed76252216190c58948b89c8532c02eb89
-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',
]
},