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 8f7735837cd84031477624753b5908746c13e357..42fe066ab4a5633c44e0d5fd29015983d778f92b 100644 |
--- a/sdk/lib/html/dartium/html_dartium.dart |
+++ b/sdk/lib/html/dartium/html_dartium.dart |
@@ -24849,9 +24849,7 @@ class Notification extends EventTarget { |
if (lang != null) parsedOptions['lang'] = lang; |
if (tag != null) parsedOptions['tag'] = tag; |
if (icon != null) parsedOptions['icon'] = icon; |
- var nativeOptions; |
- nativeOptions = parsedOptions; |
- return Notification._factoryNotification(title, nativeOptions); |
+ return Notification._factoryNotification(title, parsedOptions); |
} |
// To suppress missing implicit constructor warnings. |
factory Notification._() { throw new UnsupportedError("Not supported"); } |