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

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

Issue 717643003: Extract timing info from distiller result (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dd-roll-perf
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
« no previous file with comments | « components/dom_distiller/core/distiller_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 optional string text_direction = 7; 44 optional string text_direction = 7;
45 45
46 message PaginationInfo { 46 message PaginationInfo {
47 optional string next_page = 1; 47 optional string next_page = 1;
48 optional string prev_page = 2; 48 optional string prev_page = 2;
49 optional string canonical_page = 3; 49 optional string canonical_page = 3;
50 } 50 }
51 51
52 // Pagination info for this page. 52 // Pagination info for this page.
53 optional PaginationInfo pagination_info = 8; 53 optional PaginationInfo pagination_info = 8;
54
55 message TimingInfo {
56 optional string name = 1;
57 optional double time = 2;
58 }
59
60 repeated TimingInfo timing_info = 9;
54 } 61 }
OLDNEW
« no previous file with comments | « components/dom_distiller/core/distiller_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698