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

Unified Diff: sync/protocol/article_specifics.proto

Issue 717793007: Add attachments support to DomDistillerStore (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/dom_distiller/core/dom_distiller_store_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/protocol/article_specifics.proto
diff --git a/sync/protocol/article_specifics.proto b/sync/protocol/article_specifics.proto
index 00631fd16ece787eb3951c02129e2c37266b05fe..436fc2e40a125f7c334cce99e7d9b7ab652831b0 100644
--- a/sync/protocol/article_specifics.proto
+++ b/sync/protocol/article_specifics.proto
@@ -11,19 +11,23 @@ option retain_unknown_fields = true;
package sync_pb;
+import "attachments.proto";
+
// Properties of Article objects.
message ArticleSpecifics {
- // Next ID to use: 4
-
optional string entry_id = 1;
optional string title = 2;
repeated ArticlePage pages = 3;
+
+ optional ArticleAttachments attachments = 4;
}
message ArticlePage {
- // Next ID to use: 2
-
optional string url = 1;
}
+
+message ArticleAttachments {
+ optional AttachmentIdProto distilled_article = 1;
+}
« no previous file with comments | « components/dom_distiller/core/dom_distiller_store_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698