OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Client side phishing and malware detection request and response | 5 // Client side phishing and malware detection request and response |
6 // protocol buffers. Those protocol messages should be kept in sync | 6 // protocol buffers. Those protocol messages should be kept in sync |
7 // with the server implementation. | 7 // with the server implementation. |
8 // | 8 // |
9 // If you want to change this protocol definition or you have questions | 9 // If you want to change this protocol definition or you have questions |
10 // regarding its format please contact chrome-anti-phishing@googlegroups.com. | 10 // regarding its format please contact chrome-anti-phishing@googlegroups.com. |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 } | 444 } |
445 | 445 |
446 message ClientIncidentResponse { | 446 message ClientIncidentResponse { |
447 optional bytes token = 1; | 447 optional bytes token = 1; |
448 optional bool download_requested = 2; | 448 optional bool download_requested = 2; |
449 | 449 |
450 message EnvironmentRequest { optional int32 dll_index = 1; } | 450 message EnvironmentRequest { optional int32 dll_index = 1; } |
451 | 451 |
452 repeated EnvironmentRequest environment_requests = 3; | 452 repeated EnvironmentRequest environment_requests = 3; |
453 } | 453 } |
| 454 |
| 455 message DownloadMetadata { |
| 456 optional uint32 download_id = 1; |
| 457 |
| 458 optional ClientIncidentReport.DownloadDetails download = 2; |
| 459 } |
OLD | NEW |