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

Side by Side Diff: components/sync/protocol/reading_list_specifics.proto

Issue 2241583003: Creating protobuf for reading list sync (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 unified diff | Download patch
« no previous file with comments | « components/sync/protocol/protocol_sources.gni ('k') | components/sync/protocol/sync.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 package sync_pb;
12
13 // Properties of Reading list items.
14 message ReadingListSpecifics {
15 optional string entry_id = 1;
16
17 optional string title = 2;
18
19 optional string url = 3;
20
21 optional int64 creation_time_us = 4;
22
23 optional int64 update_time_us = 5;
24
25 enum ReadingListEntryStatus {
26 UNREAD = 0;
27 READ = 1;
28 }
29
30 optional ReadingListEntryStatus status = 6;
31 }
OLDNEW
« no previous file with comments | « components/sync/protocol/protocol_sources.gni ('k') | components/sync/protocol/sync.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698