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

Side by Side Diff: sdk/lib/web_gl/dartium/web_gl_dartium.dart

Issue 2975443002: Don't use `LinkedList` in the core libraries anymore. (Closed)
Patch Set: Rebase Created 3 years, 4 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
OLDNEW
1 /** 1 /**
2 * 3D programming in the browser. 2 * 3D programming in the browser.
3 */ 3 */
4 library dart.dom.web_gl; 4 library dart.dom.web_gl;
5 5
6 import 'dart:async'; 6 import 'dart:async';
7 import 'dart:collection'; 7 import 'dart:collection' hide LinkedList, LinkedListEntry;
8 import 'dart:_internal'; 8 import 'dart:_internal';
9 import 'dart:html'; 9 import 'dart:html';
10 import 'dart:html_common'; 10 import 'dart:html_common';
11 import 'dart:nativewrappers'; 11 import 'dart:nativewrappers';
12 import 'dart:typed_data'; 12 import 'dart:typed_data';
13 import 'dart:_blink' as _blink; 13 import 'dart:_blink' as _blink;
14 import 'dart:js' as js; 14 import 'dart:js' as js;
15 // DO NOT EDIT 15 // DO NOT EDIT
16 // Auto-generated dart:web_gl library. 16 // Auto-generated dart:web_gl library.
17 17
(...skipping 8438 matching lines...) Expand 10 before | Expand all | Expand 10 after
8456 8456
8457 @DocsEditable() 8457 @DocsEditable()
8458 @DomName('WebGLRenderingContextBase') 8458 @DomName('WebGLRenderingContextBase')
8459 @Experimental() // untriaged 8459 @Experimental() // untriaged
8460 class _WebGLRenderingContextBase extends DartHtmlDomObject { 8460 class _WebGLRenderingContextBase extends DartHtmlDomObject {
8461 // To suppress missing implicit constructor warnings. 8461 // To suppress missing implicit constructor warnings.
8462 factory _WebGLRenderingContextBase._() { 8462 factory _WebGLRenderingContextBase._() {
8463 throw new UnsupportedError("Not supported"); 8463 throw new UnsupportedError("Not supported");
8464 } 8464 }
8465 } 8465 }
OLDNEW
« no previous file with comments | « sdk/lib/web_gl/dart2js/web_gl_dart2js.dart ('k') | sdk/lib/web_sql/dart2js/web_sql_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698