| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 syntax = "proto2"; | 5 syntax = "proto2"; |
| 6 | 6 |
| 7 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
| 8 | 8 |
| 9 package enterprise_management; | 9 package enterprise_management; |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 // The HTTP GET request sent to |download_url| must include an | 35 // The HTTP GET request sent to |download_url| must include an |
| 36 // "Authorization: " HTTP header of the "OAuth" type. Its value is a valid | 36 // "Authorization: " HTTP header of the "OAuth" type. Its value is a valid |
| 37 // Google Accounts OAuth access token. | 37 // Google Accounts OAuth access token. |
| 38 OAUTH = 2; | 38 OAUTH = 2; |
| 39 } | 39 } |
| 40 | 40 |
| 41 // The authentication method that the client must use to fetch |download_url|. | 41 // The authentication method that the client must use to fetch |download_url|. |
| 42 optional AuthMethod download_auth_method = 3 [default = NONE]; | 42 optional AuthMethod download_auth_method = 3 [default = NONE]; |
| 43 } | 43 } |
| OLD | NEW |