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

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

Issue 346763003: Adding blacklisted dlls to safe browsing incident reports. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@updatedWard2
Patch Set: rebasing again... Created 6 years, 5 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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 enum Feature { 403 enum Feature {
404 UNKNOWN = 0; 404 UNKNOWN = 0;
405 LSP = 1; 405 LSP = 1;
406 } 406 }
407 optional string path = 1; 407 optional string path = 1;
408 optional uint64 base_address = 2; 408 optional uint64 base_address = 2;
409 optional uint32 length = 3; 409 optional uint32 length = 3;
410 repeated Feature feature = 4; 410 repeated Feature feature = 4;
411 } 411 }
412 repeated Dll dll = 9; 412 repeated Dll dll = 9;
413 repeated string blacklisted_dll = 10;
413 } 414 }
414 optional Process process = 3; 415 optional Process process = 3;
415 } 416 }
416 417
417 optional EnvironmentData environment = 3; 418 optional EnvironmentData environment = 3;
418 } 419 }
419 420
420 message ClientIncidentResponse { 421 message ClientIncidentResponse {
421 optional bytes token = 1; 422 optional bytes token = 1;
422 optional bool download_requested = 2; 423 optional bool download_requested = 2;
423 424
424 message EnvironmentRequest { optional int32 dll_index = 1; } 425 message EnvironmentRequest { optional int32 dll_index = 1; }
425 426
426 repeated EnvironmentRequest environment_requests = 3; 427 repeated EnvironmentRequest environment_requests = 3;
427 } 428 }
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/environment_data_collection_win_unittest.cc ('k') | chrome_elf/blacklist/blacklist.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698