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

Side by Side Diff: dart/tools/dom/src/html_native_DOMImplementation.dart

Issue 550173007: Version 1.6.1 (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.6/
Patch Set: Created 6 years, 3 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 | « dart/tools/VERSION ('k') | deps/dartium.deps/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of html; 5 part of html;
6 6
7 class _Property { 7 class _Property {
8 _Property(this.name) : 8 _Property(this.name) :
9 _hasValue = false, 9 _hasValue = false,
10 writable = false, 10 writable = false,
(...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 _scheduleImmediateHelper._schedule(callback); 983 _scheduleImmediateHelper._schedule(callback);
984 }; 984 };
985 985
986 get _pureIsolateScheduleImmediateClosure => ((void callback()) => 986 get _pureIsolateScheduleImmediateClosure => ((void callback()) =>
987 throw new UnimplementedError("scheduleMicrotask in background isolates " 987 throw new UnimplementedError("scheduleMicrotask in background isolates "
988 "are not supported in the browser")); 988 "are not supported in the browser"));
989 989
990 void _initializeCustomElement(Element e) { 990 void _initializeCustomElement(Element e) {
991 _Utils.initializeCustomElement(e); 991 _Utils.initializeCustomElement(e);
992 } 992 }
993
994 // Class for unsupported native browser 'DOM' objects.
995 class _UnsupportedBrowserObject extends NativeFieldWrapperClass2 {
996 }
OLDNEW
« no previous file with comments | « dart/tools/VERSION ('k') | deps/dartium.deps/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698