Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: chrome/browser/safe_browsing/report.proto

Issue 6611023: The optional Malware Details also collects HTTP cache information. See design... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 has HTTP Responses.
92 optional bool complete = 5;
90 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698