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

Side by Side Diff: components/safe_browsing_db/metadata.proto

Issue 1624723002: Move remote_db_manager into the safe_browsing_db component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fetch, rebase, format Created 4 years, 10 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 option optimize_for = LITE_RUNTIME; 7 option optimize_for = LITE_RUNTIME;
8 8
9 package safe_browsing; 9 package safe_browsing;
10 10
11 // Everything below this comment was copied from the page 11 // Everything below this comment was copied from the page
12 // <https://developers.google.com/safe-browsing/developers_guide_v3>, 12 // <https://developers.google.com/safe-browsing/developers_guide_v3>,
13 // section "Full Hash Metadata". 13 // section "Full Hash Metadata".
14 14
15 // Metadata for the goog-malware-shavar list. 15 // Metadata for the goog-malware-shavar list.
16 message MalwarePatternType { 16 message MalwarePatternType {
17 enum PATTERN_TYPE { 17 enum PATTERN_TYPE {
18 LANDING = 1; 18 LANDING = 1;
19 DISTRIBUTION = 2; 19 DISTRIBUTION = 2;
20 } 20 }
21 21
22 required PATTERN_TYPE pattern_type = 1; 22 required PATTERN_TYPE pattern_type = 1;
23 } 23 }
OLDNEW
« no previous file with comments | « components/safe_browsing_db/hit_report.h ('k') | components/safe_browsing_db/remote_database_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698