Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Unified Diff: third_party/WebKit/Source/modules/budget/BudgetChunk.idl

Issue 2110833002: Basic framework for Budget API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated to (almost) match the spec Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/budget/BudgetChunk.idl
diff --git a/ipc/ipc_test.mojom b/third_party/WebKit/Source/modules/budget/BudgetChunk.idl
similarity index 60%
copy from ipc/ipc_test.mojom
copy to third_party/WebKit/Source/modules/budget/BudgetChunk.idl
index 9c1b30e2a3a51688acc3f8fe1746e37f430856f5..b61df64cdf635639ca2b4bb7e863783a309f695d 100644
--- a/ipc/ipc_test.mojom
+++ b/third_party/WebKit/Source/modules/budget/BudgetChunk.idl
@@ -2,9 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-module IPC.mojom;
+// https://beverloo.github.io/budget-api/
Peter Beverloo 2016/08/03 13:25:55 # https://beverloo.github.io/budget-api/#budget-st
harkness 2016/08/04 14:18:23 Done.
-interface SimpleTestDriver {
- ExpectString(string str);
- RequestQuit() => ();
+dictionary BudgetChunk {
+ double amount;
+ double expiration;
};

Powered by Google App Engine
This is Rietveld 408576698