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

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

Issue 40983002: Renamed contains in the rectangle class to containsRectangle. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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
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 31c2d5e14d1d39161fec8a2bfc1b0df2f60861c4..ce3f426e03c1642b009604ee1acff649c8755a49 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -28430,7 +28430,7 @@ class _ClientRect extends NativeFieldWrapperClass2 implements Rectangle {
/**
* Tests whether `this` entirely contains [another].
*/
- bool contains(Rectangle<num> another) {
+ bool containsRectangle(Rectangle<num> another) {
return left <= another.left &&
left + width >= another.left + another.width &&
top <= another.top &&

Powered by Google App Engine
This is Rietveld 408576698