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

Unified Diff: components/reading_list/ios/proto/reading_list.proto

Issue 2763233003: Move ReadingList model to components/reading_list/core (Closed)
Patch Set: feedback Created 3 years, 9 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 | « components/reading_list/ios/proto/BUILD.gn ('k') | components/reading_list/ios/reading_list_entry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/reading_list/ios/proto/reading_list.proto
diff --git a/components/reading_list/ios/proto/reading_list.proto b/components/reading_list/ios/proto/reading_list.proto
deleted file mode 100644
index 412545460fab386fc975f08b810120c610e9f3ff..0000000000000000000000000000000000000000
--- a/components/reading_list/ios/proto/reading_list.proto
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-//
-// Sync protocol datatype extension for the reading list items.
-
-syntax = "proto2";
-
-option optimize_for = LITE_RUNTIME;
-
-package reading_list;
-
-// Local Reading list entry. This proto contains the fields stored locally for
-// a reading list entry. It must be kept synced with the
-// sync_pb.ReadingListSpecifics protobuf.
-message ReadingListLocal {
- optional string entry_id = 1;
- optional string title = 2;
- optional string url = 3;
- optional int64 creation_time_us = 4;
- optional int64 update_time_us = 5;
- optional int64 first_read_time_us = 11;
- optional int64 update_title_time_us = 12;
-
- enum ReadingListEntryStatus {
- UNREAD = 0;
- READ = 1;
- UNSEEN = 2;
- }
- // If the field is not present, it defaults to UNSEEN.
- optional ReadingListEntryStatus status = 6;
-
- enum DistillationState {
- WAITING = 0;
- PROCESSING = 1;
- PROCESSED = 2;
- WILL_RETRY = 3;
- ERROR = 4;
- }
- optional DistillationState distillation_state = 7;
- optional string distilled_path = 8;
- optional string distilled_url = 13;
- optional int64 failed_download_counter = 9;
- optional string backoff = 10;
- optional int64 distillation_time_us = 14;
- optional int64 distillation_size = 15;
-}
« no previous file with comments | « components/reading_list/ios/proto/BUILD.gn ('k') | components/reading_list/ios/reading_list_entry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698