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

Unified Diff: lib/html/src/AnimationEventWrappingImplementation.dart

Issue 10891022: Update corelib/ and lib/ to use the new try-catch syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/src/Measurement.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/AnimationEventWrappingImplementation.dart
diff --git a/lib/html/src/AnimationEventWrappingImplementation.dart b/lib/html/src/AnimationEventWrappingImplementation.dart
index fb4cd18eb33577ca526c4087348904bcc86b2443..711265bfc0fc0a2a8eb1a2c41a684b1814888bd7 100644
--- a/lib/html/src/AnimationEventWrappingImplementation.dart
+++ b/lib/html/src/AnimationEventWrappingImplementation.dart
@@ -13,7 +13,7 @@ class AnimationEventWrappingImplementation extends EventWrappingImplementation i
try {
dom.document.createEvent("WebKitAnimationEvent");
_name = "WebKitAnimationEvent";
- } catch (var e) {
+ } catch (e) {
_name = "AnimationEvent";
}
return _name;
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/src/Measurement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698