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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 11880036: Removing HTML elements by making them private. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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:
Download patch
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 85f5683ef36546d80a606f219d69663fbbaf16b0..dc7fb407f4aeba57cab79fad0f5aed60dc56595d 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -6767,26 +6767,6 @@ class DeviceOrientationEvent extends Event {
// WARNING: Do not edit - generated code.
-/// @domName HTMLDirectoryElement
-class DirectoryElement extends _Element_Merged {
- DirectoryElement.internal() : super.internal();
-
-
- /** @domName HTMLDirectoryElement.compact */
- bool get compact native "HTMLDirectoryElement_compact_Getter";
-
-
- /** @domName HTMLDirectoryElement.compact */
- void set compact(bool value) native "HTMLDirectoryElement_compact_Setter";
-
-}
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// 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.
-
-// WARNING: Do not edit - generated code.
-
-
/// @domName DirectoryEntry
class DirectoryEntry extends Entry {
DirectoryEntry.internal() : super.internal();
@@ -28449,6 +28429,26 @@ class _CssValueList extends CssValue implements List<CssValue> {
// WARNING: Do not edit - generated code.
+/// @domName HTMLDirectoryElement
+class _DirectoryElement extends _Element_Merged {
+ _DirectoryElement.internal() : super.internal();
+
+
+ /** @domName HTMLDirectoryElement.compact */
+ bool get compact native "HTMLDirectoryElement_compact_Getter";
+
+
+ /** @domName HTMLDirectoryElement.compact */
+ void set compact(bool value) native "HTMLDirectoryElement_compact_Setter";
+
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// 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.
+
+// WARNING: Do not edit - generated code.
+
+
/// @domName HTMLElement
class _Element_Merged extends Element {
_Element_Merged.internal() : super.internal();

Powered by Google App Engine
This is Rietveld 408576698