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

Unified Diff: third_party/WebKit/Source/modules/quota/StorageInfo.idl

Issue 2585563002: Quota: StorageInfo should be a dictionary (Closed)
Patch Set: Created 4 years 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/quota/StorageInfo.idl
diff --git a/third_party/WebKit/Source/modules/quota/StorageInfo.idl b/third_party/WebKit/Source/modules/quota/StorageInfo.idl
index 6b0ef63d1793f2a5c5cc484163800b9a7fb810f3..e3fb389fa97734dac98df43c88067c3f55ec6444 100644
--- a/third_party/WebKit/Source/modules/quota/StorageInfo.idl
+++ b/third_party/WebKit/Source/modules/quota/StorageInfo.idl
@@ -28,10 +28,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-[
- NoInterfaceObject,
- RuntimeEnabled=QuotaPromise
-] interface StorageInfo {
- readonly attribute unsigned long long usage;
- readonly attribute unsigned long long quota;
+dictionary StorageInfo {
+ unsigned long long usage;
+ unsigned long long quota;
};

Powered by Google App Engine
This is Rietveld 408576698