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

Side by Side Diff: components/precache/core/proto/unfinished_work.proto

Issue 2711473006: Add Precache.Fetch.MinWeight UMA. (Closed)
Patch Set: Comment clarifications. Created 3 years, 9 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 import "precache.proto"; 7 import "precache.proto";
8 8
9 package precache; 9 package precache;
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 optional uint64 num_manifest_urls = 7; 47 optional uint64 num_manifest_urls = 7;
48 48
49 // The total number of resource URLs that the precache session gathered from 49 // The total number of resource URLs that the precache session gathered from
50 // the manifests. 50 // the manifests.
51 optional uint64 num_resource_urls = 9; 51 optional uint64 num_resource_urls = 9;
52 52
53 // The internal value of a base::Time object representing the precache 53 // The internal value of a base::Time object representing the precache
54 // session start time. The start time is the time just before when top hosts 54 // session start time. The start time is the time just before when top hosts
55 // are requested. 55 // are requested.
56 optional int64 start_time = 8; 56 optional int64 start_time = 8;
57
58 // The minimum resource weight that has been fetched so far. Populated only if
59 // global ranking is enabled.
60 optional double min_weight_fetched = 10;
57 }; 61 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698