Index: mojo/services/geometry/interfaces/geometry.mojom |
diff --git a/mojo/services/geometry/interfaces/geometry.mojom b/mojo/services/geometry/interfaces/geometry.mojom |
index 1f882b6ad3eb558f978568f08cccf9ecfee127d8..92021c1dc2f81729e60757302d0b0ea5d7e50b4d 100644 |
--- a/mojo/services/geometry/interfaces/geometry.mojom |
+++ b/mojo/services/geometry/interfaces/geometry.mojom |
@@ -34,19 +34,19 @@ struct RectF { |
float height; |
}; |
-struct RRect { |
- int32 x; |
- int32 y; |
- int32 width; |
- int32 height; |
- int32 top_left_radius_x; |
- int32 top_left_radius_y; |
- int32 top_right_radius_x; |
- int32 top_right_radius_y; |
- int32 bottom_left_radius_x; |
- int32 bottom_left_radius_y; |
- int32 bottom_right_radius_x; |
- int32 bottom_right_radius_y; |
+struct RRectF { |
+ float x; |
+ float y; |
+ float width; |
+ float height; |
+ float top_left_radius_x; |
+ float top_left_radius_y; |
+ float top_right_radius_x; |
+ float top_right_radius_y; |
+ float bottom_left_radius_x; |
+ float bottom_left_radius_y; |
+ float bottom_right_radius_x; |
+ float bottom_right_radius_y; |
}; |
struct Transform { |