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

Unified Diff: components/sync/protocol/reading_list_specifics.proto

Issue 2369303002: Reading List create protobuf store (Closed)
Patch Set: threads Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ios/chrome/BUILD.gn » ('j') | ios/chrome/browser/reading_list/reading_list_entry.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/protocol/reading_list_specifics.proto
diff --git a/components/sync/protocol/reading_list_specifics.proto b/components/sync/protocol/reading_list_specifics.proto
index 849e57c116c45555639dd857f1267757c153ae1f..0b82916df527bbc4cb6c46e9285bc6ce0e447228 100644
--- a/components/sync/protocol/reading_list_specifics.proto
+++ b/components/sync/protocol/reading_list_specifics.proto
@@ -29,3 +29,18 @@ message ReadingListSpecifics {
optional ReadingListEntryStatus status = 6;
}
+
+// Local Reading list entry.
+message ReadingListLocal {
+ optional ReadingListSpecifics entry = 1;
+ enum DistillationState {
+ WAITING = 0;
+ PROCESSING = 1;
+ PROCESSED = 2;
+ WILL_RETRY = 3;
+ ERROR = 4;
+ }
+ optional DistillationState distillation_state = 2;
+ optional string distilled_url = 3;
+ optional string backoff = 4;
+}
« no previous file with comments | « no previous file | ios/chrome/BUILD.gn » ('j') | ios/chrome/browser/reading_list/reading_list_entry.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698