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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 12387106: Renaming CSS primitive types to have CSS prefixes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 722d169529f118068d908d7a9a8f74e975d4049e..ff45a106f5c72768af6e36fce28b4071f7eb4dc6 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -2794,11 +2794,11 @@ class CssPrimitiveValue extends CssValue {
@DomName('CSSPrimitiveValue.getRGBColorValue')
@DocsEditable
- RgbColor getRgbColorValue() native "CSSPrimitiveValue_getRGBColorValue_Callback";
+ CssRgbColor getRgbColorValue() native "CSSPrimitiveValue_getRGBColorValue_Callback";
@DomName('CSSPrimitiveValue.getRectValue')
@DocsEditable
- Rect getRectValue() native "CSSPrimitiveValue_getRectValue_Callback";
+ CssRect getRectValue() native "CSSPrimitiveValue_getRectValue_Callback";
@DomName('CSSPrimitiveValue.getStringValue')
@DocsEditable
@@ -2821,6 +2821,60 @@ class CssPrimitiveValue extends CssValue {
@DocsEditable
+@DomName('Rect')
+class CssRect extends NativeFieldWrapperClass1 {
+ CssRect.internal();
+
+ @DomName('Rect.bottom')
+ @DocsEditable
+ CssPrimitiveValue get bottom native "Rect_bottom_Getter";
+
+ @DomName('Rect.left')
+ @DocsEditable
+ CssPrimitiveValue get left native "Rect_left_Getter";
+
+ @DomName('Rect.right')
+ @DocsEditable
+ CssPrimitiveValue get right native "Rect_right_Getter";
+
+ @DomName('Rect.top')
+ @DocsEditable
+ CssPrimitiveValue get top native "Rect_top_Getter";
+
+}
+// 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.
+
+
+@DocsEditable
+@DomName('RGBColor')
+class CssRgbColor extends NativeFieldWrapperClass1 {
+ CssRgbColor.internal();
+
+ @DomName('RGBColor.blue')
+ @DocsEditable
+ CssPrimitiveValue get blue native "RGBColor_blue_Getter";
+
+ @DomName('RGBColor.green')
+ @DocsEditable
+ CssPrimitiveValue get green native "RGBColor_green_Getter";
+
+ @DomName('RGBColor.red')
+ @DocsEditable
+ CssPrimitiveValue get red native "RGBColor_red_Getter";
+
+}
+// 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.
+
+
+@DocsEditable
@DomName('CSSRule')
class CssRule extends NativeFieldWrapperClass1 {
CssRule.internal();
@@ -20595,35 +20649,6 @@ class RangeException extends NativeFieldWrapperClass1 {
// WARNING: Do not edit - generated code.
-@DocsEditable
-@DomName('Rect')
-class Rect extends NativeFieldWrapperClass1 {
- Rect.internal();
-
- @DomName('Rect.bottom')
- @DocsEditable
- CssPrimitiveValue get bottom native "Rect_bottom_Getter";
-
- @DomName('Rect.left')
- @DocsEditable
- CssPrimitiveValue get left native "Rect_left_Getter";
-
- @DomName('Rect.right')
- @DocsEditable
- CssPrimitiveValue get right native "Rect_right_Getter";
-
- @DomName('Rect.top')
- @DocsEditable
- CssPrimitiveValue get top native "Rect_top_Getter";
-
-}
-// 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.
-
-
typedef void RequestAnimationFrameCallback(num highResTime);
// 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
@@ -20633,31 +20658,6 @@ typedef void RequestAnimationFrameCallback(num highResTime);
@DocsEditable
-@DomName('RGBColor')
-class RgbColor extends NativeFieldWrapperClass1 {
- RgbColor.internal();
-
- @DomName('RGBColor.blue')
- @DocsEditable
- CssPrimitiveValue get blue native "RGBColor_blue_Getter";
-
- @DomName('RGBColor.green')
- @DocsEditable
- CssPrimitiveValue get green native "RGBColor_green_Getter";
-
- @DomName('RGBColor.red')
- @DocsEditable
- CssPrimitiveValue get red native "RGBColor_red_Getter";
-
-}
-// 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.
-
-
-@DocsEditable
@DomName('RTCDataChannel')
class RtcDataChannel extends EventTarget {
RtcDataChannel.internal() : super.internal();
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698