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

Side by Side Diff: chrome/common/safe_browsing/csd.proto

Issue 663023007: Include high-fidelity metadata about a download in incident reports. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: sync to r300417 Created 6 years, 2 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
OLDNEW
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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 } 448 }
449 449
450 message ClientIncidentResponse { 450 message ClientIncidentResponse {
451 optional bytes token = 1; 451 optional bytes token = 1;
452 optional bool download_requested = 2; 452 optional bool download_requested = 2;
453 453
454 message EnvironmentRequest { optional int32 dll_index = 1; } 454 message EnvironmentRequest { optional int32 dll_index = 1; }
455 455
456 repeated EnvironmentRequest environment_requests = 3; 456 repeated EnvironmentRequest environment_requests = 3;
457 } 457 }
458
459 message DownloadMetadata {
460 optional uint32 download_id = 1;
461
462 optional ClientIncidentReport.DownloadDetails download = 2;
463 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698