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

Unified Diff: client/dom/generated/src/wrapping/_CSSStyleDeclarationWrappingImplementation.dart

Issue 9615032: Refresh dom_frog. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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:
View side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/wrapping/_CSSStyleDeclarationWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_CSSStyleDeclarationWrappingImplementation.dart b/client/dom/generated/src/wrapping/_CSSStyleDeclarationWrappingImplementation.dart
index df36a04e34067f177b1452c84a128ddec342faec..f138fa443817c7610313aa9490f03b9eed542632 100644
--- a/client/dom/generated/src/wrapping/_CSSStyleDeclarationWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_CSSStyleDeclarationWrappingImplementation.dart
@@ -59,16 +59,10 @@ class _CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implemen
static String _removeProperty(receiver, propertyName) native;
void setProperty(String propertyName, String value, [String priority = null]) {
- if (priority === null) {
- _setProperty(this, propertyName, value);
- return;
- } else {
- _setProperty_2(this, propertyName, value, priority);
- return;
- }
+ _setProperty(this, propertyName, value, priority);
+ return;
}
- static void _setProperty(receiver, propertyName, value) native;
- static void _setProperty_2(receiver, propertyName, value, priority) native;
+ static void _setProperty(receiver, propertyName, value, priority) native;
String get typeName() { return "CSSStyleDeclaration"; }
}

Powered by Google App Engine
This is Rietveld 408576698