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

Side by Side Diff: components/dom_distiller/core/proto/distilled_page.proto

Issue 678543002: add pagination info to DistilledPageProto (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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Distilled page content. 5 // Distilled page content.
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
(...skipping 21 matching lines...) Expand all
32 // Title for the current page. 32 // Title for the current page.
33 optional string title = 5; 33 optional string title = 5;
34 34
35 message DebugInfo { 35 message DebugInfo {
36 // Contains the log from the JS distiller. 36 // Contains the log from the JS distiller.
37 optional string log = 1; 37 optional string log = 1;
38 } 38 }
39 39
40 // Debug information about this page. 40 // Debug information about this page.
41 optional DebugInfo debug_info = 6; 41 optional DebugInfo debug_info = 6;
42
43 message PaginationInfo {
44 optional string next_page = 1;
45 optional string prev_page = 2;
46 optional string canonical_page = 3;
47 }
48
49 // Pagination info for this page.
50 optional PaginationInfo pagination_info = 7;
42 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698