Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / mojo / services / public / interfaces / geometry / geometry.mojom
index da31e12..f701fdf 100644 (file)
@@ -26,9 +26,16 @@ struct Rect {
   int32 height;
 };
 
+struct RectF {
+  float x;
+  float y;
+  float width;
+  float height;
+};
+
 struct Transform {
   // Row major order.
-  float[16] matrix;
+  float[16]? matrix;
 };
 
 }