blob: e0c76e1655efc16c4872be19eafdf6285f785c66 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto2";
package budget_service;
// Chrome requires this.
option optimize_for = LITE_RUNTIME;
// Next available id: 2
message Budget {
// The sequence of budget chunks and their expiration times.
repeated BudgetChunk budget = 1;
}
// Next available id: 3
message BudgetChunk {
// The amount of budget remaining in this chunk.
optional double amount = 1;
// The timestamp when the budget expires. This stores the internal value
// needed to construct a base::Time object.
optional int64 expiration = 2;
}