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

Unified Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart

Issue 12163009: Remove webkit prefix and annotate with experimental tag. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
diff --git a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
index 316afb6a72299d35ba4d85851ee86c4e3708a4e6..f597a4ac5d44095ed29de7637ec1acceff62e5d4 100644
--- a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
+++ b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
@@ -277,7 +277,10 @@ class IdbFactory extends NativeFieldWrapperClass1 {
@DomName('IDBFactory.webkitGetDatabaseNames')
@DocsEditable
- Request webkitGetDatabaseNames() native "IDBFactory_webkitGetDatabaseNames_Callback";
+ @SupportedBrowser(SupportedBrowser.CHROME)
+ @SupportedBrowser(SupportedBrowser.SAFARI)
+ @Experimental
+ Request getDatabaseNames() native "IDBFactory_webkitGetDatabaseNames_Callback";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -841,7 +844,10 @@ class Request extends EventTarget {
@DomName('IDBRequest.webkitErrorMessage')
@DocsEditable
- String get webkitErrorMessage native "IDBRequest_webkitErrorMessage_Getter";
+ @SupportedBrowser(SupportedBrowser.CHROME)
+ @SupportedBrowser(SupportedBrowser.SAFARI)
+ @Experimental
+ String get errorMessage native "IDBRequest_webkitErrorMessage_Getter";
@DomName('IDBRequest.addEventListener')
@DocsEditable
@@ -921,7 +927,10 @@ class Transaction extends EventTarget {
@DomName('IDBTransaction.webkitErrorMessage')
@DocsEditable
- String get webkitErrorMessage native "IDBTransaction_webkitErrorMessage_Getter";
+ @SupportedBrowser(SupportedBrowser.CHROME)
+ @SupportedBrowser(SupportedBrowser.SAFARI)
+ @Experimental
+ String get errorMessage native "IDBTransaction_webkitErrorMessage_Getter";
@DomName('IDBTransaction.abort')
@DocsEditable

Powered by Google App Engine
This is Rietveld 408576698