| 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 enum Feature { | 401 enum Feature { |
| 402 UNKNOWN = 0; | 402 UNKNOWN = 0; |
| 403 LSP = 1; | 403 LSP = 1; |
| 404 } | 404 } |
| 405 optional string path = 1; | 405 optional string path = 1; |
| 406 optional uint64 base_address = 2; | 406 optional uint64 base_address = 2; |
| 407 optional uint32 length = 3; | 407 optional uint32 length = 3; |
| 408 repeated Feature feature = 4; | 408 repeated Feature feature = 4; |
| 409 } | 409 } |
| 410 repeated Dll dll = 9; | 410 repeated Dll dll = 9; |
| 411 repeated string blacklisted_dll = 10; |
| 411 } | 412 } |
| 412 optional Process process = 3; | 413 optional Process process = 3; |
| 413 } | 414 } |
| 414 | 415 |
| 415 optional EnvironmentData environment = 3; | 416 optional EnvironmentData environment = 3; |
| 416 } | 417 } |
| 417 | 418 |
| 418 message ClientIncidentResponse { | 419 message ClientIncidentResponse { |
| 419 optional bytes token = 1; | 420 optional bytes token = 1; |
| 420 optional bool download_requested = 2; | 421 optional bool download_requested = 2; |
| 421 | 422 |
| 422 message EnvironmentRequest { optional int32 dll_index = 1; } | 423 message EnvironmentRequest { optional int32 dll_index = 1; } |
| 423 | 424 |
| 424 repeated EnvironmentRequest environment_requests = 3; | 425 repeated EnvironmentRequest environment_requests = 3; |
| 425 } | 426 } |
| OLD | NEW |