OLD | NEW |
(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 } |
OLD | NEW |