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

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

Issue 6208003: Add a Node message in the malware details protocol buffer. This allows us to ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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
« no previous file with comments | « chrome/browser/safe_browsing/malware_details_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
11 // resource such as the page in the address bar or any other resource 11 // resource such as the page in the address bar or any other resource
12 // that was loaded for this page. 12 // that was loaded for this page.
13 // 13 //
14 // In addition to the url, a resource can contain HTTP request and response 14 // In addition to the url, a resource can contain HTTP request and response
15 // headers and bodies. 15 // headers and bodies.
16 16
17 syntax = "proto2"; 17 syntax = "proto2";
18 18
19 option optimize_for = LITE_RUNTIME; 19 option optimize_for = LITE_RUNTIME;
20 20
21 package safe_browsing; 21 package safe_browsing;
22 22
23 message ClientMalwareReportRequest { 23 message ClientMalwareReportRequest {
24 24
25 message HTTPHeader { 25 message HTTPHeader {
26 required string name = 1; 26 required bytes name = 1;
27 optional string value = 2; 27 optional bytes value = 2;
28 } 28 }
29 29
30 message HTTPRequest { 30 message HTTPRequest {
31 message FirstLine { 31 message FirstLine {
32 optional string verb = 1; // Also known as method, eg "GET" 32 optional bytes verb = 1; // Also known as method, eg "GET"
33 optional string uri = 2; 33 optional bytes uri = 2;
34 optional string version = 3; 34 optional bytes version = 3;
35 } 35 }
36 36
37 optional FirstLine firstline = 1; 37 optional FirstLine firstline = 1;
38 repeated HTTPHeader headers = 2; 38 repeated HTTPHeader headers = 2;
39 optional string body = 3; 39 optional bytes body = 3;
40 40
41 // bodydigest and bodylength can be useful if the report does not 41 // bodydigest and bodylength can be useful if the report does not
42 // contain the body itself. 42 // contain the body itself.
43 optional string bodydigest = 4; 43 optional bytes bodydigest = 4;
44 optional int32 bodylength = 5; 44 optional int32 bodylength = 5;
45 } 45 }
46 46
47 message HTTPResponse { 47 message HTTPResponse {
48 message FirstLine { 48 message FirstLine {
49 optional int32 code = 1; 49 optional int32 code = 1;
50 optional string reason = 2; 50 optional bytes reason = 2;
51 optional string version = 3; 51 optional bytes version = 3;
52 } 52 }
53 53
54 optional FirstLine firstline = 1; 54 optional FirstLine firstline = 1;
55 repeated HTTPHeader headers = 2; 55 repeated HTTPHeader headers = 2;
56 optional string body = 3; 56 optional bytes body = 3;
57 57
58 // bodydigest and bodylength can be useful if the report does not 58 // bodydigest and bodylength can be useful if the report does not
59 // contain the body itself. 59 // contain the body itself.
60 optional string bodydigest = 4; 60 optional bytes bodydigest = 4;
61 optional int32 bodylength = 5; 61 optional int32 bodylength = 5;
62 optional string remote_ip = 6; 62 optional bytes remote_ip = 6;
63 } 63 }
64 64
65 message Resource { 65 message Resource {
66 optional string url = 1; 66 required int32 id = 1;
67 optional string url = 2;
68 optional HTTPRequest request = 3;
69 optional HTTPResponse response = 4;
67 70
68 // URL of the parent frame. 71 optional int32 parent_id = 5; // Id of the parent, if known.
69 optional string parent = 2; 72
73 // A list of children. The order of the children in this list is
74 // significant. The |parent_id| field for child nodes can be derived
75 // from this, but this allows us to be more flexible.
76 repeated int32 child_ids = 6;
70 77
71 // Tag that was used to include this resource, eg "iframe" 78 // Tag that was used to include this resource, eg "iframe"
72 optional string tag_name = 3; 79 optional string tag_name = 7;
73
74 optional HTTPRequest request = 4;
75 optional HTTPResponse response = 5;
76
77 // A list of children. The order of the children in this list is
78 // significant. The |parent| field for child nodes can be derived
79 // from this, but this allows us to be more flexible.
80 repeated string children = 6;
81 } 80 }
82 81
83 // URL of the resource that matches the safe browsing list. 82 // URL of the resource that matches the safe browsing list.
84 optional string malware_url = 1; 83 optional string malware_url = 1;
85 84
86 // URL of the page in the address bar. 85 // URL of the page in the address bar.
87 optional string page_url = 2; 86 optional string page_url = 2;
88 87
89 optional string referrer_url = 3; 88 optional string referrer_url = 3;
90 repeated Resource nodes = 4; 89 repeated Resource resources = 4;
91 } 90 }
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/malware_details_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698