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

Unified Diff: mojo/dart/packages/_mojo_for_test_only/lib/sample/sample_service.mojom.dart

Issue 1575433005: Regenerate Dart .mojom files (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Run tests again? 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_for_test_only/lib/sample/sample_service.mojom.dart
diff --git a/mojo/dart/packages/_mojo_for_test_only/lib/sample/sample_service.mojom.dart b/mojo/dart/packages/_mojo_for_test_only/lib/sample/sample_service.mojom.dart
index 9efe538221af49574572f333b70efb0b73446057..fd57999548869a3bd14aebddad26bfd578c90057 100644
--- a/mojo/dart/packages/_mojo_for_test_only/lib/sample/sample_service.mojom.dart
+++ b/mojo/dart/packages/_mojo_for_test_only/lib/sample/sample_service.mojom.dart
@@ -82,7 +82,7 @@ class Bar extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(16, 0)
];
- int alpha = 0xff;
+ int alpha = 255;
int beta = 0;
int gamma = 0;
BarType type = new BarType(1);
@@ -457,23 +457,23 @@ class DefaultsTest extends bindings.Struct {
int a5 = 3456789012;
int a6 = -111111111111;
int a7 = 9999999999999999999;
- int a8 = 0x12345;
- int a9 = -0x12345;
+ int a8 = 74565;
+ int a9 = -74565;
int a10 = 1234;
double a13 = 123.25;
double a14 = 1234567890.123;
- double a15 = 1E10;
- double a16 = -1.2E+20;
- double a17 = 1.23E-20;
+ double a15 = 10000000000.0;
+ double a16 = -1.2e+20;
+ double a17 = 1.23e-20;
List<int> a18 = null;
String a19 = null;
BarType a20 = new BarType(3);
double a29 = double.INFINITY;
sample_import_mojom.Point a21 = null;
sample_import2_mojom.Thing a22 = new sample_import2_mojom.Thing();
- int a23 = 0xFFFFFFFFFFFFFFFF;
- int a24 = 0x123456789;
- int a25 = -0x123456789;
+ int a23 = 18446744073709551615;
+ int a24 = 4886718345;
+ int a25 = -4886718345;
double a26 = double.INFINITY;
double a27 = double.NEGATIVE_INFINITY;
double a28 = double.NAN;

Powered by Google App Engine
This is Rietveld 408576698