blob: 8ccf53295536d366c4198e2bc3cceb212f5cf851 [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.
// https://beverloo.github.io/budget-api/#budget-service-interface
// TODO(harkness): Link WICG spec when it exists.
enum ActionType {
"silent-push"
};
[
RuntimeEnabled=Budget
] interface BudgetService {
[CallWith=ScriptState] Promise<double> getCost(ActionType actionType);
[CallWith=ScriptState] Promise<FrozenArray<BudgetChunk>> getBudget();
};