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

Unified Diff: samples/ui_lib/touch/TouchUtil.dart

Issue 11358060: Change NotImplementedException to UnimplementedError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments. Created 8 years, 1 month 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 | « samples/ui_lib/observable/observable.dart ('k') | tests/html/cssstyledeclaration_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/ui_lib/touch/TouchUtil.dart
diff --git a/samples/ui_lib/touch/TouchUtil.dart b/samples/ui_lib/touch/TouchUtil.dart
index fc0a997c0bab0f4f843488ba5a7f513f574cd037..5c88f0d581ad4573e5ecf0d4eea7ed6aebd35b65 100644
--- a/samples/ui_lib/touch/TouchUtil.dart
+++ b/samples/ui_lib/touch/TouchUtil.dart
@@ -166,10 +166,10 @@ class MockTouch implements Touch {
EventTarget get target => wrapped.target;
- num get webkitForce { throw new NotImplementedException(); }
- int get webkitRadiusX { throw new NotImplementedException(); }
- int get webkitRadiusY { throw new NotImplementedException(); }
- num get webkitRotationAngle { throw new NotImplementedException(); }
+ num get webkitForce { throw new UnimplementedError(); }
+ int get webkitRadiusX { throw new UnimplementedError(); }
+ int get webkitRadiusY { throw new UnimplementedError(); }
+ num get webkitRotationAngle { throw new UnimplementedError(); }
}
class MockTouchEvent implements TouchEvent {
« no previous file with comments | « samples/ui_lib/observable/observable.dart ('k') | tests/html/cssstyledeclaration_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698