OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 syntax = "proto2"; | 5 syntax = "proto2"; |
6 | 6 |
7 package dom_distiller.proto; | 7 package dom_distiller.proto; |
8 option optimize_for = LITE_RUNTIME; | 8 option optimize_for = LITE_RUNTIME; |
9 option java_package = "com.dom_distiller.proto"; | 9 option java_package = "com.dom_distiller.proto"; |
10 option java_outer_classname = "DomDistillerProtos"; | 10 option java_outer_classname = "DomDistillerProtos"; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 message DomDistillerOptions { | 79 message DomDistillerOptions { |
80 // Whether to extract only the text (or to include the containing html). | 80 // Whether to extract only the text (or to include the containing html). |
81 optional bool extract_text_only = 1; | 81 optional bool extract_text_only = 1; |
82 | 82 |
83 // How much debug output to dump to window.console. | 83 // How much debug output to dump to window.console. |
84 // (0): Logs nothing | 84 // (0): Logs nothing |
85 // (1): Text Node data for each stage of processing | 85 // (1): Text Node data for each stage of processing |
86 // (2): (1) and some node visibility information | 86 // (2): (1) and some node visibility information |
87 // (3): (2) and extracted paging information | 87 // (3): (2) and extracted paging information |
88 optional int32 debug_level = 2; | 88 optional int32 debug_level = 2; |
| 89 |
| 90 // The original domain of the page if it's a file://, used for detecting next/
prev page links |
| 91 // which expects the same domain for both current page and paging links. |
| 92 optional string original_domain = 3; |
89 } | 93 } |
OLD | NEW |