OLD | NEW |
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 13 matching lines...) Expand all Loading... |
24 | 24 |
25 // The image data | 25 // The image data |
26 required bytes data = 2; | 26 required bytes data = 2; |
27 } | 27 } |
28 | 28 |
29 // The images referenced in the HTML. | 29 // The images referenced in the HTML. |
30 repeated Image image = 4; | 30 repeated Image image = 4; |
31 | 31 |
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 { |
| 36 // Contains the log from the JS distiller. |
| 37 optional string log = 1; |
| 38 } |
| 39 |
| 40 // Debug information about this page. |
| 41 optional DebugInfo debug_info = 6; |
| 42 } |
OLD | NEW |