Index: components/safe_browsing_db/v4_store.proto |
diff --git a/components/safe_browsing_db/v4_store.proto b/components/safe_browsing_db/v4_store.proto |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bb226fa25abdf039aa59fedefd0b4ad1b356fb46 |
--- /dev/null |
+++ b/components/safe_browsing_db/v4_store.proto |
@@ -0,0 +1,27 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+syntax = "proto2"; |
+ |
+import "safebrowsing.proto"; |
+ |
+option optimize_for = LITE_RUNTIME; |
+ |
+package safe_browsing; |
+ |
+// The message that's serialized to disk when a store update is processed. |
+message V4StoreFileFormat { |
+ // The magic bytes to identify this file as a SafeBrowsing hash-prefix file. |
+ // https://en.wikipedia.org/wiki/Magic_number_(programming) |
Scott Hess - ex-Googler
2016/06/22 22:58:39
It's a uint32 not a blob, so I think "magic number
vakh (use Gerrit instead)
2016/06/23 23:09:32
Done.
Scott Hess - ex-Googler
2016/06/24 04:14:11
Well, technically the number read here _could_ be
vakh (use Gerrit instead)
2016/06/24 18:03:50
If I come across a random file that happens to hav
|
+ optional uint32 magic_number = 1; |
+ |
+ // Identifies the version of the file format. |
+ // Version 9 with PVer4 is very different from earlier versions. |
Scott Hess - ex-Googler
2016/06/22 22:58:39
Hypothetical question: Does this even need a versi
Nathan Parker
2016/06/23 00:37:55
I think the use for the version is if we want to u
vakh (use Gerrit instead)
2016/06/23 23:09:32
The goal of the magic number is to ensure that we
Scott Hess - ex-Googler
2016/06/24 04:14:11
With the earlier raw file, the magic sufficed to d
vakh (use Gerrit instead)
2016/06/24 18:03:50
A version number is just an integer whose value we
|
+ optional uint32 version_number = 2; |
+ |
+ // Contains the information about the store being written and the hash-prefix |
+ // updates. For details about this message, see: safebrowsing.proto |
Scott Hess - ex-Googler
2016/06/22 22:58:39
Drop "Contains the", that's implied by defining st
vakh (use Gerrit instead)
2016/06/23 23:09:32
Done.
|
+ optional FetchThreatListUpdatesResponse.ListUpdateResponse |
+ list_update_response = 3; |
+} |