Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 // | |
| 5 // Protocol buffer definitions for Data Reduction Proxy data stored in LevelDB. | |
| 6 | |
| 7 syntax = "proto2"; | |
| 8 | |
| 9 option optimize_for = LITE_RUNTIME; | |
| 10 | |
| 11 package data_reduction_proxy; | |
| 12 | |
| 13 // Contains data usage for an interval of time. | |
|
jeremyim
2015/06/30 01:59:19
Does it make sense for a bucket to contain it's ti
Not at Google. Contact bengr
2015/07/01 17:13:49
You can use last_updated_timestamp to compute the
jeremyim
2015/07/01 21:31:01
The only issue is that a computed time range depen
Not at Google. Contact bengr
2015/07/01 23:17:37
We spent some time debating the smallest bucket si
| |
| 14 message DataUsageBucket { | |
|
jeremyim
2015/06/30 01:59:19
What happened to tag 1?
Not at Google. Contact bengr
2015/07/01 17:13:49
Fixed.
| |
| 15 repeated PerSiteDataUsage site_usage = 2; | |
| 16 optional int64 last_updated_timestamp = 3; | |
| 17 } | |
| 18 | |
| 19 // Data usage for a specific site. | |
| 20 message PerSiteDataUsage { | |
| 21 required string site_url = 1; | |
| 22 required int64 original_content_length = 2; | |
| 23 required int64 content_length = 3; | |
| 24 } | |
| OLD | NEW |