| OLD | NEW |
| 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'; |
| 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'; |
| (...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 class ContextEvent extends Event { | 817 class ContextEvent extends Event { |
| 818 // To suppress missing implicit constructor warnings. | 818 // To suppress missing implicit constructor warnings. |
| 819 factory ContextEvent._() { throw new UnsupportedError("Not supported"); } | 819 factory ContextEvent._() { throw new UnsupportedError("Not supported"); } |
| 820 | 820 |
| 821 | 821 |
| 822 @Deprecated("Internal Use Only") | 822 @Deprecated("Internal Use Only") |
| 823 static ContextEvent internalCreateContextEvent() { | 823 static ContextEvent internalCreateContextEvent() { |
| 824 return new ContextEvent._internalWrap(); | 824 return new ContextEvent._internalWrap(); |
| 825 } | 825 } |
| 826 | 826 |
| 827 factory ContextEvent._internalWrap() { | 827 external factory ContextEvent._internalWrap(); |
| 828 return new ContextEvent.internal_(); | |
| 829 } | |
| 830 | 828 |
| 831 @Deprecated("Internal Use Only") | 829 @Deprecated("Internal Use Only") |
| 832 ContextEvent.internal_() : super.internal_(); | 830 ContextEvent.internal_() : super.internal_(); |
| 833 | 831 |
| 834 | 832 |
| 835 @DomName('WebGLContextEvent.statusMessage') | 833 @DomName('WebGLContextEvent.statusMessage') |
| 836 @DocsEditable() | 834 @DocsEditable() |
| 837 String get statusMessage => _blink.BlinkWebGLContextEvent.instance.statusMessa
ge_Getter_(unwrap_jso(this)); | 835 String get statusMessage => _blink.BlinkWebGLContextEvent.instance.statusMessa
ge_Getter_(unwrap_jso(this)); |
| 838 | 836 |
| 839 } | 837 } |
| (...skipping 2906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3746 | 3744 |
| 3747 | 3745 |
| 3748 @DocsEditable() | 3746 @DocsEditable() |
| 3749 @DomName('WebGLRenderingContextBase') | 3747 @DomName('WebGLRenderingContextBase') |
| 3750 @Experimental() // untriaged | 3748 @Experimental() // untriaged |
| 3751 class _WebGLRenderingContextBase extends DartHtmlDomObject { | 3749 class _WebGLRenderingContextBase extends DartHtmlDomObject { |
| 3752 // To suppress missing implicit constructor warnings. | 3750 // To suppress missing implicit constructor warnings. |
| 3753 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo
rted"); } | 3751 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo
rted"); } |
| 3754 | 3752 |
| 3755 } | 3753 } |
| OLD | NEW |