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

Unified Diff: mojo/dart/packages/mojo_services/lib/mojo/geometry.mojom.dart

Issue 1552963002: Initial checkin of the new Mozart compositor. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-11
Patch Set: fix android build Created 4 years, 11 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
Index: mojo/dart/packages/mojo_services/lib/mojo/geometry.mojom.dart
diff --git a/mojo/dart/packages/mojo_services/lib/mojo/geometry.mojom.dart b/mojo/dart/packages/mojo_services/lib/mojo/geometry.mojom.dart
index cc4fbc71ba5ca74616c33690d08356f55476e904..cdf5a0ef62b9da974f7e775925210f23eadff088 100644
--- a/mojo/dart/packages/mojo_services/lib/mojo/geometry.mojom.dart
+++ b/mojo/dart/packages/mojo_services/lib/mojo/geometry.mojom.dart
@@ -9,6 +9,8 @@ import 'dart:async';
import 'package:mojo/bindings.dart' as bindings;
import 'package:mojo/core.dart' as core;
+
+
class Point extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(16, 0)
@@ -48,13 +50,15 @@ class Point extends bindings.Struct {
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
- 'Message newer than the last known version cannot be shorter than '
- 'required by the last known version.');
+ 'Message newer than the last known version cannot be shorter than '
+ 'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
+
result.x = decoder0.decodeInt32(8);
}
if (mainDataHeader.version >= 0) {
+
result.y = decoder0.decodeInt32(12);
}
return result;
@@ -62,18 +66,16 @@ class Point extends bindings.Struct {
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
-
+
encoder0.encodeInt32(x, 8);
-
+
encoder0.encodeInt32(y, 12);
}
String toString() {
return "Point("
- "x: $x"
- ", "
- "y: $y"
- ")";
+ "x: $x" ", "
+ "y: $y" ")";
}
Map toJson() {
@@ -84,6 +86,7 @@ class Point extends bindings.Struct {
}
}
+
class PointF extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(16, 0)
@@ -123,13 +126,15 @@ class PointF extends bindings.Struct {
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
- 'Message newer than the last known version cannot be shorter than '
- 'required by the last known version.');
+ 'Message newer than the last known version cannot be shorter than '
+ 'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
+
result.x = decoder0.decodeFloat(8);
}
if (mainDataHeader.version >= 0) {
+
result.y = decoder0.decodeFloat(12);
}
return result;
@@ -137,18 +142,16 @@ class PointF extends bindings.Struct {
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
-
+
encoder0.encodeFloat(x, 8);
-
+
encoder0.encodeFloat(y, 12);
}
String toString() {
return "PointF("
- "x: $x"
- ", "
- "y: $y"
- ")";
+ "x: $x" ", "
+ "y: $y" ")";
}
Map toJson() {
@@ -159,6 +162,7 @@ class PointF extends bindings.Struct {
}
}
+
class Size extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(16, 0)
@@ -198,13 +202,15 @@ class Size extends bindings.Struct {
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
- 'Message newer than the last known version cannot be shorter than '
- 'required by the last known version.');
+ 'Message newer than the last known version cannot be shorter than '
+ 'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
+
result.width = decoder0.decodeInt32(8);
}
if (mainDataHeader.version >= 0) {
+
result.height = decoder0.decodeInt32(12);
}
return result;
@@ -212,18 +218,16 @@ class Size extends bindings.Struct {
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
-
+
encoder0.encodeInt32(width, 8);
-
+
encoder0.encodeInt32(height, 12);
}
String toString() {
return "Size("
- "width: $width"
- ", "
- "height: $height"
- ")";
+ "width: $width" ", "
+ "height: $height" ")";
}
Map toJson() {
@@ -234,6 +238,7 @@ class Size extends bindings.Struct {
}
}
+
class Rect extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(24, 0)
@@ -275,19 +280,23 @@ class Rect extends bindings.Struct {
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
- 'Message newer than the last known version cannot be shorter than '
- 'required by the last known version.');
+ 'Message newer than the last known version cannot be shorter than '
+ 'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
+
result.x = decoder0.decodeInt32(8);
}
if (mainDataHeader.version >= 0) {
+
result.y = decoder0.decodeInt32(12);
}
if (mainDataHeader.version >= 0) {
+
result.width = decoder0.decodeInt32(16);
}
if (mainDataHeader.version >= 0) {
+
result.height = decoder0.decodeInt32(20);
}
return result;
@@ -295,26 +304,22 @@ class Rect extends bindings.Struct {
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
-
+
encoder0.encodeInt32(x, 8);
-
+
encoder0.encodeInt32(y, 12);
-
+
encoder0.encodeInt32(width, 16);
-
+
encoder0.encodeInt32(height, 20);
}
String toString() {
return "Rect("
- "x: $x"
- ", "
- "y: $y"
- ", "
- "width: $width"
- ", "
- "height: $height"
- ")";
+ "x: $x" ", "
+ "y: $y" ", "
+ "width: $width" ", "
+ "height: $height" ")";
}
Map toJson() {
@@ -327,6 +332,7 @@ class Rect extends bindings.Struct {
}
}
+
class RectF extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(24, 0)
@@ -368,19 +374,23 @@ class RectF extends bindings.Struct {
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
- 'Message newer than the last known version cannot be shorter than '
- 'required by the last known version.');
+ 'Message newer than the last known version cannot be shorter than '
+ 'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
+
result.x = decoder0.decodeFloat(8);
}
if (mainDataHeader.version >= 0) {
+
result.y = decoder0.decodeFloat(12);
}
if (mainDataHeader.version >= 0) {
+
result.width = decoder0.decodeFloat(16);
}
if (mainDataHeader.version >= 0) {
+
result.height = decoder0.decodeFloat(20);
}
return result;
@@ -388,26 +398,22 @@ class RectF extends bindings.Struct {
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
-
+
encoder0.encodeFloat(x, 8);
-
+
encoder0.encodeFloat(y, 12);
-
+
encoder0.encodeFloat(width, 16);
-
+
encoder0.encodeFloat(height, 20);
}
String toString() {
return "RectF("
- "x: $x"
- ", "
- "y: $y"
- ", "
- "width: $width"
- ", "
- "height: $height"
- ")";
+ "x: $x" ", "
+ "y: $y" ", "
+ "width: $width" ", "
+ "height: $height" ")";
}
Map toJson() {
@@ -420,6 +426,7 @@ class RectF extends bindings.Struct {
}
}
+
class RRect extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(56, 0)
@@ -469,43 +476,55 @@ class RRect extends bindings.Struct {
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
- 'Message newer than the last known version cannot be shorter than '
- 'required by the last known version.');
+ 'Message newer than the last known version cannot be shorter than '
+ 'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
+
result.x = decoder0.decodeInt32(8);
}
if (mainDataHeader.version >= 0) {
+
result.y = decoder0.decodeInt32(12);
}
if (mainDataHeader.version >= 0) {
+
result.width = decoder0.decodeInt32(16);
}
if (mainDataHeader.version >= 0) {
+
result.height = decoder0.decodeInt32(20);
}
if (mainDataHeader.version >= 0) {
+
result.topLeftRadiusX = decoder0.decodeInt32(24);
}
if (mainDataHeader.version >= 0) {
+
result.topLeftRadiusY = decoder0.decodeInt32(28);
}
if (mainDataHeader.version >= 0) {
+
result.topRightRadiusX = decoder0.decodeInt32(32);
}
if (mainDataHeader.version >= 0) {
+
result.topRightRadiusY = decoder0.decodeInt32(36);
}
if (mainDataHeader.version >= 0) {
+
result.bottomLeftRadiusX = decoder0.decodeInt32(40);
}
if (mainDataHeader.version >= 0) {
+
result.bottomLeftRadiusY = decoder0.decodeInt32(44);
}
if (mainDataHeader.version >= 0) {
+
result.bottomRightRadiusX = decoder0.decodeInt32(48);
}
if (mainDataHeader.version >= 0) {
+
result.bottomRightRadiusY = decoder0.decodeInt32(52);
}
return result;
@@ -513,58 +532,46 @@ class RRect extends bindings.Struct {
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
-
+
encoder0.encodeInt32(x, 8);
-
+
encoder0.encodeInt32(y, 12);
-
+
encoder0.encodeInt32(width, 16);
-
+
encoder0.encodeInt32(height, 20);
-
+
encoder0.encodeInt32(topLeftRadiusX, 24);
-
+
encoder0.encodeInt32(topLeftRadiusY, 28);
-
+
encoder0.encodeInt32(topRightRadiusX, 32);
-
+
encoder0.encodeInt32(topRightRadiusY, 36);
-
+
encoder0.encodeInt32(bottomLeftRadiusX, 40);
-
+
encoder0.encodeInt32(bottomLeftRadiusY, 44);
-
+
encoder0.encodeInt32(bottomRightRadiusX, 48);
-
+
encoder0.encodeInt32(bottomRightRadiusY, 52);
}
String toString() {
return "RRect("
- "x: $x"
- ", "
- "y: $y"
- ", "
- "width: $width"
- ", "
- "height: $height"
- ", "
- "topLeftRadiusX: $topLeftRadiusX"
- ", "
- "topLeftRadiusY: $topLeftRadiusY"
- ", "
- "topRightRadiusX: $topRightRadiusX"
- ", "
- "topRightRadiusY: $topRightRadiusY"
- ", "
- "bottomLeftRadiusX: $bottomLeftRadiusX"
- ", "
- "bottomLeftRadiusY: $bottomLeftRadiusY"
- ", "
- "bottomRightRadiusX: $bottomRightRadiusX"
- ", "
- "bottomRightRadiusY: $bottomRightRadiusY"
- ")";
+ "x: $x" ", "
+ "y: $y" ", "
+ "width: $width" ", "
+ "height: $height" ", "
+ "topLeftRadiusX: $topLeftRadiusX" ", "
+ "topLeftRadiusY: $topLeftRadiusY" ", "
+ "topRightRadiusX: $topRightRadiusX" ", "
+ "topRightRadiusY: $topRightRadiusY" ", "
+ "bottomLeftRadiusX: $bottomLeftRadiusX" ", "
+ "bottomLeftRadiusY: $bottomLeftRadiusY" ", "
+ "bottomRightRadiusX: $bottomRightRadiusX" ", "
+ "bottomRightRadiusY: $bottomRightRadiusY" ")";
}
Map toJson() {
@@ -585,6 +592,7 @@ class RRect extends bindings.Struct {
}
}
+
class Transform extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(16, 0)
@@ -623,26 +631,25 @@ class Transform extends bindings.Struct {
}
} else if (mainDataHeader.size < kVersions.last.size) {
throw new bindings.MojoCodecError(
- 'Message newer than the last known version cannot be shorter than '
- 'required by the last known version.');
+ 'Message newer than the last known version cannot be shorter than '
+ 'required by the last known version.');
}
if (mainDataHeader.version >= 0) {
- result.matrix =
- decoder0.decodeFloatArray(8, bindings.kNothingNullable, 16);
+
+ result.matrix = decoder0.decodeFloatArray(8, bindings.kNothingNullable, 16);
}
return result;
}
void encode(bindings.Encoder encoder) {
var encoder0 = encoder.getStructEncoderAtOffset(kVersions.last);
-
+
encoder0.encodeFloatArray(matrix, 8, bindings.kNothingNullable, 16);
}
String toString() {
return "Transform("
- "matrix: $matrix"
- ")";
+ "matrix: $matrix" ")";
}
Map toJson() {
@@ -651,3 +658,5 @@ class Transform extends bindings.Struct {
return map;
}
}
+
+

Powered by Google App Engine
This is Rietveld 408576698