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

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

Issue 14173003: Remove Collection, Collections and clean up List/Set/Queue implementations of retain/remove. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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
« no previous file with comments | « sdk/lib/web_sql/dart2js/web_sql_dart2js.dart ('k') | tests/co19/co19-compiler.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 */
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 } 365 }
366 366
367 Map removeLast() { 367 Map removeLast() {
368 throw new UnsupportedError("Cannot remove from immutable List."); 368 throw new UnsupportedError("Cannot remove from immutable List.");
369 } 369 }
370 370
371 void remove(Object object) { 371 void remove(Object object) {
372 throw new UnsupportedError("Cannot remove from immutable List."); 372 throw new UnsupportedError("Cannot remove from immutable List.");
373 } 373 }
374 374
375 void removeAll(Iterable elements) {
376 throw new UnsupportedError("Cannot remove from immutable List.");
377 }
378
379 void retainAll(Iterable elements) {
380 throw new UnsupportedError("Cannot remove from immutable List.");
381 }
382
383 void removeWhere(bool test(Map element)) { 375 void removeWhere(bool test(Map element)) {
384 throw new UnsupportedError("Cannot remove from immutable List."); 376 throw new UnsupportedError("Cannot remove from immutable List.");
385 } 377 }
386 378
387 void retainWhere(bool test(Map element)) { 379 void retainWhere(bool test(Map element)) {
388 throw new UnsupportedError("Cannot remove from immutable List."); 380 throw new UnsupportedError("Cannot remove from immutable List.");
389 } 381 }
390 382
391 void setRange(int start, int rangeLength, List<Map> from, [int startFrom]) { 383 void setRange(int start, int rangeLength, List<Map> from, [int startFrom]) {
392 throw new UnsupportedError("Cannot setRange on immutable List."); 384 throw new UnsupportedError("Cannot setRange on immutable List.");
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 462
471 @DocsEditable 463 @DocsEditable
472 @DomName('SQLTransactionSync') 464 @DomName('SQLTransactionSync')
473 @SupportedBrowser(SupportedBrowser.CHROME) 465 @SupportedBrowser(SupportedBrowser.CHROME)
474 @SupportedBrowser(SupportedBrowser.SAFARI) 466 @SupportedBrowser(SupportedBrowser.SAFARI)
475 @Experimental 467 @Experimental
476 abstract class _SQLTransactionSync extends NativeFieldWrapperClass1 { 468 abstract class _SQLTransactionSync extends NativeFieldWrapperClass1 {
477 _SQLTransactionSync.internal(); 469 _SQLTransactionSync.internal();
478 470
479 } 471 }
OLDNEW
« no previous file with comments | « sdk/lib/web_sql/dart2js/web_sql_dart2js.dart ('k') | tests/co19/co19-compiler.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698