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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 208493004: Restore these deprecated types for now (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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:
Download patch
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index e60871909a717f212fdc761aedc8bc392f812f26..654e26f379abf531b8aa2e650286d21d67322202 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -6515,6 +6515,60 @@ class DedicatedWorkerGlobalScope extends WorkerGlobalScope native "DedicatedWork
@DocsEditable()
+@DomName('DeprecatedStorageInfo')
+@Experimental() // untriaged
+class DeprecatedStorageInfo extends Interceptor native "DeprecatedStorageInfo" {
+ // To suppress missing implicit constructor warnings.
+ factory DeprecatedStorageInfo._() { throw new UnsupportedError("Not supported"); }
+
+ @DomName('DeprecatedStorageInfo.PERSISTENT')
+ @DocsEditable()
+ @Experimental() // untriaged
+ static const int PERSISTENT = 1;
+
+ @DomName('DeprecatedStorageInfo.TEMPORARY')
+ @DocsEditable()
+ @Experimental() // untriaged
+ static const int TEMPORARY = 0;
+
+ @DomName('DeprecatedStorageInfo.queryUsageAndQuota')
+ @DocsEditable()
+ @Experimental() // untriaged
+ void queryUsageAndQuota(int storageType, [StorageUsageCallback usageCallback, StorageErrorCallback errorCallback]) native;
+
+ @DomName('DeprecatedStorageInfo.requestQuota')
+ @DocsEditable()
+ @Experimental() // untriaged
+ void requestQuota(int storageType, int newQuotaInBytes, [StorageQuotaCallback quotaCallback, StorageErrorCallback errorCallback]) native;
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+
+@DocsEditable()
+@DomName('DeprecatedStorageQuota')
+@Experimental() // untriaged
+class DeprecatedStorageQuota extends Interceptor native "DeprecatedStorageQuota" {
+ // To suppress missing implicit constructor warnings.
+ factory DeprecatedStorageQuota._() { throw new UnsupportedError("Not supported"); }
+
+ @DomName('DeprecatedStorageQuota.queryUsageAndQuota')
+ @DocsEditable()
+ @Experimental() // untriaged
+ void queryUsageAndQuota(StorageUsageCallback usageCallback, [StorageErrorCallback errorCallback]) native;
+
+ @DomName('DeprecatedStorageQuota.requestQuota')
+ @DocsEditable()
+ @Experimental() // untriaged
+ void requestQuota(int newQuotaInBytes, [StorageQuotaCallback quotaCallback, StorageErrorCallback errorCallback]) native;
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+
+@DocsEditable()
@DomName('HTMLDetailsElement')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.SAFARI)
@@ -19308,7 +19362,7 @@ class Navigator extends Interceptor implements NavigatorOnLine, NavigatorID nati
@SupportedBrowser(SupportedBrowser.SAFARI)
@Experimental()
// http://www.w3.org/TR/quota-api/#accessing-storagequota
- final _DeprecatedStorageQuota persistentStorage;
+ final DeprecatedStorageQuota persistentStorage;
@JSName('webkitTemporaryStorage')
@DomName('Navigator.webkitTemporaryStorage')
@@ -19317,7 +19371,7 @@ class Navigator extends Interceptor implements NavigatorOnLine, NavigatorID nati
@SupportedBrowser(SupportedBrowser.SAFARI)
@Experimental()
// http://www.w3.org/TR/quota-api/#accessing-storagequota
- final _DeprecatedStorageQuota temporaryStorage;
+ final DeprecatedStorageQuota temporaryStorage;
@DomName('Navigator.getStorageUpdates')
@DocsEditable()
@@ -30264,30 +30318,6 @@ abstract class _DatabaseSync extends Interceptor native "DatabaseSync" {
@DocsEditable()
-@DomName('DeprecatedStorageInfo')
-@Experimental() // untriaged
-abstract class _DeprecatedStorageInfo extends Interceptor native "DeprecatedStorageInfo" {
- // To suppress missing implicit constructor warnings.
- factory _DeprecatedStorageInfo._() { throw new UnsupportedError("Not supported"); }
-}
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-
-@DocsEditable()
-@DomName('DeprecatedStorageQuota')
-@Experimental() // untriaged
-abstract class _DeprecatedStorageQuota extends Interceptor native "DeprecatedStorageQuota" {
- // To suppress missing implicit constructor warnings.
- factory _DeprecatedStorageQuota._() { throw new UnsupportedError("Not supported"); }
-}
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-
-@DocsEditable()
@DomName('DirectoryEntrySync')
// http://www.w3.org/TR/file-system-api/#the-directoryentrysync-interface
@Experimental()
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698