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

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

Issue 586793003: Safebrowsing: Honor the metadata from malware fullhash results in SB API 3.0. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changes for sky Created 6 years, 3 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
(Empty)
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
3 // found in the LICENSE file.
4
5 syntax = "proto2";
6
7 option optimize_for = LITE_RUNTIME;
8
9 package safe_browsing;
10
11 // Everything below this comment was copied from the page
12 // <https://developers.google.com/safe-browsing/developers_guide_v3>,
13 // section "Full Hash Metadata".
14
15 // Metadata for the goog-malware-shavar list.
16 message MalwarePatternType {
17 enum PATTERN_TYPE {
18 LANDING = 1;
19 DISTRIBUTION = 2;
20 }
21
22 required PATTERN_TYPE pattern_type = 1;
23 }
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/database_manager_unittest.cc ('k') | chrome/browser/safe_browsing/protocol_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698