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

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

Issue 2369303002: Reading List create protobuf store (Closed)
Patch Set: feedback Created 4 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4 //
5 // Sync protocol datatype extension for the reading list items.
6
7 syntax = "proto2";
8
9 option optimize_for = LITE_RUNTIME;
10
11 import "reading_list_specifics.proto";
12
13 package reading_list;
14
15 // Local Reading list entry.
16 message ReadingListLocal {
17 optional sync_pb.ReadingListSpecifics entry = 1;
18 enum DistillationState {
19 WAITING = 0;
20 PROCESSING = 1;
21 PROCESSED = 2;
22 WILL_RETRY = 3;
23 ERROR = 4;
24 }
25 optional DistillationState distillation_state = 2;
26 optional string distilled_url = 3;
27 optional string backoff = 4;
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698