Stack sampling profiler: add fire-and-forget interface
[chromium-blink-merge.git] / components / data_reduction_proxy / proto / data_store.proto
bloba430ef49f28ac506332752fb137c9a367f558642
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.
7 syntax = "proto2";
9 option optimize_for = LITE_RUNTIME;
11 package data_reduction_proxy;
13 // Contains data usage for an interval of time.
14 message DataUsageBucket {
15   repeated PerSiteDataUsage site_usage = 1;
16   optional int64 last_updated_timestamp = 2;
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;