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

Side by Side Diff: sdk/lib/web_sql/dartium/web_sql_dartium.dart

Issue 12334098: Added library comment and warning message to web_sql. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /**
2 * An API for storing data in the browser that can be queried with SQL.
3 *
4 * **Caution:** this specification is no longer actively maintained by the Web
5 * Applications Working Group and may be removed at any time.
6 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase /)
7 * for more information.
8 *
9 * The [dart:html.Storage] or [dart:indexed_db] APIs are recommended
10 * alternatives.
11 */
1 library dart.dom.web_sql; 12 library dart.dom.web_sql;
2 13
3 import 'dart:async'; 14 import 'dart:async';
4 import 'dart:collection'; 15 import 'dart:collection';
5 import 'dart:html'; 16 import 'dart:html';
6 import 'dart:html_common'; 17 import 'dart:html_common';
7 import 'dart:nativewrappers'; 18 import 'dart:nativewrappers';
8 // DO NOT EDIT - unless you are editing documentation as per: 19 // DO NOT EDIT - unless you are editing documentation as per:
9 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation 20 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
10 // Auto-generated dart:audio library. 21 // Auto-generated dart:audio library.
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 @SupportedBrowser(SupportedBrowser.SAFARI) 487 @SupportedBrowser(SupportedBrowser.SAFARI)
477 @Experimental 488 @Experimental
478 class SqlTransactionSync extends NativeFieldWrapperClass1 { 489 class SqlTransactionSync extends NativeFieldWrapperClass1 {
479 SqlTransactionSync.internal(); 490 SqlTransactionSync.internal();
480 491
481 @DomName('SQLTransactionSync.executeSql') 492 @DomName('SQLTransactionSync.executeSql')
482 @DocsEditable 493 @DocsEditable
483 SqlResultSet executeSql(String sqlStatement, List arguments) native "SQLTransa ctionSync_executeSql_Callback"; 494 SqlResultSet executeSql(String sqlStatement, List arguments) native "SQLTransa ctionSync_executeSql_Callback";
484 495
485 } 496 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698