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

Side by Side Diff: components/data_reduction_proxy/proto/pageload_metrics.proto

Issue 2934543002: Sending a page load pingback to data saver for holdback users (Closed)
Patch Set: Created 3 years, 6 months 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 option optimize_for = LITE_RUNTIME; 7 option optimize_for = LITE_RUNTIME;
8 8
9 import "client_config.proto"; 9 import "client_config.proto";
10 10
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 optional Duration experimental_time_to_first_meaningful_paint = 15; 94 optional Duration experimental_time_to_first_meaningful_paint = 15;
95 95
96 // The unique identifier for the page load. 96 // The unique identifier for the page load.
97 optional uint64 page_id = 16; 97 optional uint64 page_id = 16;
98 98
99 // The opt out state of the page load. 99 // The opt out state of the page load.
100 optional PreviewsOptOut previews_opt_out = 17; 100 optional PreviewsOptOut previews_opt_out = 17;
101 101
102 // The previews type that was used on the page. 102 // The previews type that was used on the page.
103 optional PreviewsType previews_type = 18; 103 optional PreviewsType previews_type = 18;
104
105 // Whether the user is included in the data reduction proxy holdback
106 // experiment.
107 optional bool holdback_experiment = 19;
buettner 2017/06/09 17:17:52 Just, "holdback"?
104 } 108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698