Index: third_party/dom_distiller_js/package/proto/dom_distiller.proto |
diff --git a/third_party/dom_distiller_js/package/proto/dom_distiller.proto b/third_party/dom_distiller_js/package/proto/dom_distiller.proto |
index ca1d31bd99983bdc3282ad493ea276fa0fc1e7d0..3bde3bd6c31c55eaac010a437d65a8718f248f03 100644 |
--- a/third_party/dom_distiller_js/package/proto/dom_distiller.proto |
+++ b/third_party/dom_distiller_js/package/proto/dom_distiller.proto |
@@ -48,12 +48,26 @@ message MarkupInfo { |
repeated MarkupImage images = 9; |
} |
+message TimingInfo { |
+ optional double markup_parsing_time = 1; |
+ optional double document_construction_time = 2; |
+ optional double article_processing_time = 3; |
+ optional double formatting_time = 4; |
+ optional double total_time = 5; |
+} |
+ |
+message DebugInfo { |
+ optional string log = 1; |
+} |
+ |
message DomDistillerResult { |
optional string title = 1; |
optional DistilledContent distilled_content = 2; |
optional PaginationInfo pagination_info = 3; |
repeated string image_urls = 4; |
optional MarkupInfo markup_info = 5; |
+ optional TimingInfo timing_info = 6; |
+ optional DebugInfo debug_info = 7; |
} |
message DomDistillerOptions { |