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

Unified Diff: components/dom_distiller/core/proto/distilled_article.proto

Issue 146843010: Add support for multipage distillation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
Index: components/dom_distiller/core/proto/distilled_article.proto
diff --git a/components/dom_distiller/core/proto/distilled_article.proto b/components/dom_distiller/core/proto/distilled_article.proto
new file mode 100644
index 0000000000000000000000000000000000000000..54284bf162661e55f2c1a52b4866b6b50ffd1f7a
--- /dev/null
+++ b/components/dom_distiller/core/proto/distilled_article.proto
@@ -0,0 +1,21 @@
+// Copyright 2014 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.
+//
+// Distilled article content.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+
+package dom_distiller;
+
+import "distilled_page.proto";
+
+message DistilledArticleProto {
+ // A title for the article.
+ optional string title = 1;
+
+ // The distilled pages in the article.
+ repeated DistilledPageProto pages = 2;
+}
« no previous file with comments | « components/dom_distiller/core/page_distiller.cc ('k') | components/dom_distiller/core/proto/distilled_page.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698