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; |
}; |