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

Unified Diff: components/offline_pages/proto/offline_pages.proto

Issue 1694863003: Refactor the offline page storage to include client namespace and id. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: components/offline_pages/proto/offline_pages.proto
diff --git a/components/offline_pages/proto/offline_pages.proto b/components/offline_pages/proto/offline_pages.proto
index aeab8b0c193ebf7f2cf64fa4ead9240dcbf31f5d..d67c2e95c83b175773b4587d8876131d9c62ac1b 100644
--- a/components/offline_pages/proto/offline_pages.proto
+++ b/components/offline_pages/proto/offline_pages.proto
@@ -12,18 +12,28 @@ option retain_unknown_fields = true;
package offline_pages;
+// ClientID represents an identified in the API Client's namespace. It is mapped to an offline_id which
Dmitry Titov 2016/02/12 21:46:51 Is there a need to map this client-provided info i
bburns 2016/02/20 01:14:18 Done.
+// serves as the primary key for offline storage.
+message ClientId {
+ optional string space = 1;
+ optional string id = 2;
+}
+
message OfflinePageEntry {
// URL of the offline page.
- required string url = 1;
+ optional string url = 1;
// Bookmark ID of the offline page.
- required int64 bookmark_id = 2;
+ optional int64 deprecated_bookmark_id = 2;
+
+ // Offline ID of the page. Offline ID has replaced Bookmark ID as the primary key
+ optional int64 offline_id = 10;
// Version of the offline page metadata.
- required int32 version = 3;
+ optional int32 version = 3;
// Path to the offline archive.
- required string file_path = 4;
+ optional string file_path = 4;
// Size of the offline archive.
optional int64 file_size = 5;
@@ -48,4 +58,7 @@ message OfflinePageEntry {
// Flags for the offline page.
optional Flags flags = 9;
+
+ // ClientID for this entry, used for reverse lookups.
+ optional ClientId client_id = 11;
}

Powered by Google App Engine
This is Rietveld 408576698