Index: mojo/not-to-commit/java_mojo/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/sample/SampleServiceConstants.java |
diff --git a/mojo/not-to-commit/java_mojo/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/sample/SampleServiceConstants.java b/mojo/not-to-commit/java_mojo/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/sample/SampleServiceConstants.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..67804005ee0e28a74b4abc2195c53968360a4b5d |
--- /dev/null |
+++ b/mojo/not-to-commit/java_mojo/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/sample/SampleServiceConstants.java |
@@ -0,0 +1,20 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// This file is autogenerated by: |
+// mojo/public/tools/bindings/mojom_bindings_generator.py |
+// For: |
+// mojo/public/interfaces/bindings/tests/sample_service.mojom |
+// |
+ |
+package org.chromium.mojo.bindings.test.sample; |
rmcilroy
2014/05/20 12:43:29
I don't really like the idea of needing a separate
qsr
2014/05/20 13:12:45
Well, I do not have a strong opinion either. I sta
rmcilroy
2014/05/22 15:52:07
Given what you mention below with different mojom
|
+ |
+public final class SampleServiceConstants { |
rmcilroy
2014/05/20 12:43:29
I would just call this "Constants" and rely on the
qsr
2014/05/20 13:12:45
Two mojom can end in the same java package (they c
|
+ |
+ public static final byte THREE; |
+ static { |
+ THREE = (byte) 3; |
+ } |
rmcilroy
2014/05/20 12:43:29
Does this need to be a static block, or could it s
qsr
2014/05/20 13:12:45
At the time, it needed to be a static block. I mov
rmcilroy
2014/05/22 15:52:07
Still seems to be a static block in the latest pat
|
+ |
+} |