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

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

Issue 18342003: Properly hiding import of deprecate from collection-dev. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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 /** 1 /**
2 * An API for storing data in the browser that can be queried with SQL. 2 * An API for storing data in the browser that can be queried with SQL.
3 * 3 *
4 * **Caution:** this specification is no longer actively maintained by the Web 4 * **Caution:** this specification is no longer actively maintained by the Web
5 * Applications Working Group and may be removed at any time. 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 /) 6 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase /)
7 * for more information. 7 * for more information.
8 * 8 *
9 * The [dart:indexed_db] APIs is a recommended alternatives. 9 * The [dart:indexed_db] APIs is a recommended alternatives.
10 */ 10 */
11 library dart.dom.web_sql; 11 library dart.dom.web_sql;
12 12
13 import 'dart:async'; 13 import 'dart:async';
14 import 'dart:collection'; 14 import 'dart:collection';
15 import 'dart:_collection-dev'; 15 import 'dart:_collection-dev' hide deprecated;
16 import 'dart:html'; 16 import 'dart:html';
17 import 'dart:html_common'; 17 import 'dart:html_common';
18 import 'dart:nativewrappers'; 18 import 'dart:nativewrappers';
19 // DO NOT EDIT - unless you are editing documentation as per: 19 // DO NOT EDIT - unless you are editing documentation as per:
20 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation 20 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
21 // Auto-generated dart:audio library. 21 // Auto-generated dart:audio library.
22 22
23 23
24 24
25 25
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 @DocsEditable() 347 @DocsEditable()
348 @DomName('SQLTransactionSync') 348 @DomName('SQLTransactionSync')
349 @SupportedBrowser(SupportedBrowser.CHROME) 349 @SupportedBrowser(SupportedBrowser.CHROME)
350 @SupportedBrowser(SupportedBrowser.SAFARI) 350 @SupportedBrowser(SupportedBrowser.SAFARI)
351 @Experimental() 351 @Experimental()
352 // http://www.w3.org/TR/webdatabase/#sqltransactionsync 352 // http://www.w3.org/TR/webdatabase/#sqltransactionsync
353 @Experimental() // deprecated 353 @Experimental() // deprecated
354 abstract class _SQLTransactionSync extends NativeFieldWrapperClass1 { 354 abstract class _SQLTransactionSync extends NativeFieldWrapperClass1 {
355 355
356 } 356 }
OLDNEW
« no previous file with comments | « sdk/lib/web_gl/dartium/web_gl_dartium.dart ('k') | tools/dom/templates/html/dart2js/html_dart2js.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698