1// Copyright 2020 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 system_proxy;
10
11message SetSystemTrafficCredentialsRequest {
12  // The username for authenticating system services to the remote web proxy.
13  optional string system_services_username = 1;
14
15  // The password for authenticating system services to the remote web proxy.
16  optional string system_services_password = 2;
17}
18
19message SetSystemTrafficCredentialsResponse {
20  // Error message, empty if no error occurred.
21  optional string error_message = 1;
22}
23
24message ShutDownResponse {
25  // Error message, empty if no error occurred.
26  optional string error_message = 1;
27}
28