Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Safe Browsing reporting protocol buffers. | 5 // Safe Browsing reporting protocol buffers. |
| 6 // | 6 // |
| 7 // A ClientMalwareReportRequest is sent when a user opts-in to | 7 // A ClientMalwareReportRequest is sent when a user opts-in to |
| 8 // sending detailed malware reports from the safe browsing interstitial page. | 8 // sending detailed malware reports from the safe browsing interstitial page. |
| 9 // | 9 // |
| 10 // It is a list of Resource messages, which may contain the url of a | 10 // It is a list of Resource messages, which may contain the url of a |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 80 } | 80 } |
| 81 | 81 |
| 82 // URL of the resource that matches the safe browsing list. | 82 // URL of the resource that matches the safe browsing list. |
| 83 optional string malware_url = 1; | 83 optional string malware_url = 1; |
| 84 | 84 |
| 85 // URL of the page in the address bar. | 85 // URL of the page in the address bar. |
| 86 optional string page_url = 2; | 86 optional string page_url = 2; |
| 87 | 87 |
| 88 optional string referrer_url = 3; | 88 optional string referrer_url = 3; |
| 89 repeated Resource resources = 4; | 89 repeated Resource resources = 4; |
| 90 | |
| 91 // Whether the report is complete. | |
|
lzheng
2011/03/05 00:37:50
Not very clear what "complete" is, can you explain
panayiotis
2011/03/29 18:14:55
Done.
| |
| 92 optional bool complete = 5; | |
| 90 } | 93 } |
| OLD | NEW |