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

Side by Side Diff: sdk/lib/web_gl/dart2js/web_gl_dart2js.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:collection'; 6 import 'dart:collection' hide LinkedList, LinkedListEntry;
7 import 'dart:_internal' show FixedLengthListMixin; 7 import 'dart:_internal' show FixedLengthListMixin;
8 import 'dart:html'; 8 import 'dart:html';
9 import 'dart:html_common'; 9 import 'dart:html_common';
10 import 'dart:_native_typed_data'; 10 import 'dart:_native_typed_data';
11 import 'dart:typed_data'; 11 import 'dart:typed_data';
12 import 'dart:_js_helper' 12 import 'dart:_js_helper'
13 show Creates, JSName, Native, Returns, convertDartClosureToJS; 13 show Creates, JSName, Native, Returns, convertDartClosureToJS;
14 import 'dart:_foreign_helper' show JS; 14 import 'dart:_foreign_helper' show JS;
15 import 'dart:_interceptors' show Interceptor, JSExtendableArray; 15 import 'dart:_interceptors' show Interceptor, JSExtendableArray;
16 // DO NOT EDIT - unless you are editing documentation as per: 16 // DO NOT EDIT - unless you are editing documentation as per:
(...skipping 6890 matching lines...) Expand 10 before | Expand all | Expand 10 after
6907 6907
6908 @DocsEditable() 6908 @DocsEditable()
6909 @DomName('WebGLRenderingContextBase') 6909 @DomName('WebGLRenderingContextBase')
6910 @Experimental() // untriaged 6910 @Experimental() // untriaged
6911 abstract class _WebGLRenderingContextBase extends Interceptor { 6911 abstract class _WebGLRenderingContextBase extends Interceptor {
6912 // To suppress missing implicit constructor warnings. 6912 // To suppress missing implicit constructor warnings.
6913 factory _WebGLRenderingContextBase._() { 6913 factory _WebGLRenderingContextBase._() {
6914 throw new UnsupportedError("Not supported"); 6914 throw new UnsupportedError("Not supported");
6915 } 6915 }
6916 } 6916 }
OLDNEW
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | sdk/lib/web_gl/dartium/web_gl_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698