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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 11361272: Adding missing 'part of html' statements. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index b51fb2f217b3f9dc681b22ae8089465813391b04..bcc44f7a513d713138bf0aabbe7b346eaca43a72 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -22040,6 +22040,7 @@ abstract class History {
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+
abstract class CssClassSet implements Set<String> {
String toString() {
@@ -22205,6 +22206,7 @@ typedef void EventListener(Event event);
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+
class FilteredElementList implements List {
final Node _node;
final List<Node> _childNodes;
@@ -23909,6 +23911,7 @@ class _DocumentFragmentFactoryProvider {
// We omit an unwrapper for Window as no methods take a non-local
// window as a parameter.
+
Window _convertNativeToDart_Window(win) {
return _DOMWindowCrossFrame._createSafe(win);
}
@@ -24318,6 +24321,7 @@ bool _isImmutableJavaScriptArray(value) =>
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+
// TODO(vsm): Unify with Dartium version.
class _DOMWindowCrossFrame implements Window {
// Private window. Note, this is a window in another frame, so it
@@ -24421,6 +24425,7 @@ class _HistoryCrossFrame implements History {
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+
class _AudioContextFactoryProvider {
static AudioContext createAudioContext() {
@@ -24447,6 +24452,7 @@ class _TextFactoryProvider {
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+
class _IDBKeyRangeFactoryProvider {
static IDBKeyRange createIDBKeyRange_only(/*IDBKey*/ value) =>
@@ -24579,6 +24585,7 @@ class _LocationWrapper implements LocalLocation {
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+
/**
* Checks to see if the mutation observer API is supported on the current
* platform.
@@ -24589,6 +24596,7 @@ bool _isMutationObserverSupported() =>
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+
class _TypedArrayFactoryProvider {
static Float32Array createFloat32Array(int length) => _F32(length);
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698