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

Side by Side Diff: ios/chrome/browser/reading_list/proto/reading_list.proto

Issue 2451843002: Add Store+Sync to reading list. (Closed)
Patch Set: rebase Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Sync protocol datatype extension for the reading list items. 5 // Sync protocol datatype extension for the reading list items.
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
11 package sync_pb; 11 package reading_list;
12 12
13 // Properties of Reading list items. 13 // Local Reading list entry. This proto contains the fields stored locally for
14 message ReadingListSpecifics { 14 // a reading list entry. It must be kept synced with the
15 // sync_pb.ReadingListSpecifics protobuf.
16 message ReadingListLocal {
15 optional string entry_id = 1; 17 optional string entry_id = 1;
16 18
17 optional string title = 2; 19 optional string title = 2;
18 20
19 optional string url = 3; 21 optional string url = 3;
20 22
21 optional int64 creation_time_us = 4; 23 optional int64 creation_time_us = 4;
22 24
23 optional int64 update_time_us = 5; 25 optional int64 update_time_us = 5;
24 26
25 enum ReadingListEntryStatus { 27 enum ReadingListEntryStatus {
26 UNREAD = 0; 28 UNREAD = 0;
27 READ = 1; 29 READ = 1;
28 } 30 }
29 31
30 optional ReadingListEntryStatus status = 6; 32 optional ReadingListEntryStatus status = 6;
33
34 enum DistillationState {
35 WAITING = 0;
36 PROCESSING = 1;
37 PROCESSED = 2;
38 WILL_RETRY = 3;
39 ERROR = 4;
40 }
41 optional DistillationState distillation_state = 7;
42 optional string distilled_url = 8;
43 optional int64 failed_download_counter = 9;
44 optional string backoff = 10;
31 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698