Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // https://beverloo.github.io/budget-api/ | |
|
Peter Beverloo
2016/08/03 13:25:54
# https://beverloo.github.io/budget-api/#budget-se
Peter Beverloo
2016/08/03 13:25:54
nit: Add a TODO for linking to a WICG spec when it
harkness
2016/08/04 14:18:23
Done.
harkness
2016/08/04 14:18:23
Done.
| |
| 6 | |
| 7 enum ActionType { | |
| 8 "silent-push" | |
| 9 }; | |
| 10 | |
| 11 [ | |
| 12 Exposed=(Window, ServiceWorker), | |
|
Peter Beverloo
2016/08/03 13:25:55
The spec says [Exposed=(Window,Worker)], you use W
harkness
2016/08/04 14:18:23
This was here from an earlier version, and I wasn'
| |
| 13 RuntimeEnabled=Budget | |
| 14 ] interface Budget { | |
|
Peter Beverloo
2016/08/03 13:25:55
Something to consider: The spec calls this BudgetS
harkness
2016/08/04 14:18:23
When we were talking the other day, I suggested Bu
| |
| 15 [CallWith=ScriptState] Promise<double> getCost(ActionType actionType); | |
| 16 [CallWith=ScriptState, RaisesException] Promise<FrozenArray<BudgetChunk>> ge tBudget(); | |
| 17 }; | |
| OLD | NEW |