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

Unified Diff: mojo/public/interfaces/bindings/tests/test_structs.mojom

Issue 687793004: mojom: Remove braces from module statements and make them come first. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 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:
View side-by-side diff with in-line comments
Download patch
Index: mojo/public/interfaces/bindings/tests/test_structs.mojom
diff --git a/mojo/public/interfaces/bindings/tests/test_structs.mojom b/mojo/public/interfaces/bindings/tests/test_structs.mojom
index 3216caf6c91cee1caf15c5e6b5d290588dd9edfa..b525a2f8f28d3d094fac63f93b58ecd8477f6b41 100644
--- a/mojo/public/interfaces/bindings/tests/test_structs.mojom
+++ b/mojo/public/interfaces/bindings/tests/test_structs.mojom
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-import "mojo/public/interfaces/bindings/tests/rect.mojom";
-
[JavaPackage="org.chromium.mojo.bindings.test.mojom.test_structs"]
-module mojo.test {
+module mojo.test;
+
+import "mojo/public/interfaces/bindings/tests/rect.mojom";
struct NamedRegion {
string? name;
@@ -137,5 +137,3 @@ struct MapValueTypes {
map<string, array<array<string, 2>?>> f4;
map<string, array<array<string, 2>, 1>> f5;
};
-
-}

Powered by Google App Engine
This is Rietveld 408576698