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

Unified Diff: components/safe_browsing_db/v4_store.proto

Issue 2066083002: SafeBrowising: Read and write V4Store from/to disk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@01_UpdateDbAndStores
Patch Set: Nit: Make store creation and use more consistent. Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
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..c3379610b95ff559b043fc53325b308ff54f81ed
--- /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 number to identify this file as a SafeBrowsing hash-prefix file.
+ // https://en.wikipedia.org/wiki/Magic_number_(programming)
+ // Its value is 0x600D71FE
+ optional uint32 magic_number = 1;
+
+ // Identifies the version of the file format.
+ // Version 9 with PVer4 is very different from earlier versions.
+ optional uint32 version_number = 2;
+
+ // Information about the store and the hash-prefix updates.
+ optional FetchThreatListUpdatesResponse.ListUpdateResponse
+ list_update_response = 3;
+}

Powered by Google App Engine
This is Rietveld 408576698