Index: mojo/not-to-commit/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/mojom/sample/Provider.java |
diff --git a/mojo/not-to-commit/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/mojom/sample/Provider.java b/mojo/not-to-commit/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/mojom/sample/Provider.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9291dbb72d4fe0369e499c35ff53a566ffac6730 |
--- /dev/null |
+++ b/mojo/not-to-commit/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/mojom/sample/Provider.java |
@@ -0,0 +1,32 @@ |
+// 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_interfaces.mojom |
+// |
+ |
+package org.chromium.mojo.bindings.test.mojom.sample; |
+ |
+public interface Provider extends org.chromium.mojo.bindings.InterfaceWithClient<ProviderClient> { |
+ |
+ public interface Proxy extends Provider, org.chromium.mojo.bindings.InterfaceWithClient.Proxy<ProviderClient> { |
+ } |
+ |
+ Builder<ProviderClient, Provider, Provider.Proxy> BUILDER = ProviderInternal.BUILDER; |
+ |
+ void echoString(String a, EchoStringResponse callback); |
+ interface EchoStringResponse extends org.chromium.mojo.bindings.Callbacks.Callback1<String> { } |
+ |
+ void echoStrings(String a, String b, EchoStringsResponse callback); |
+ interface EchoStringsResponse extends org.chromium.mojo.bindings.Callbacks.Callback2<String, String> { } |
+ |
+ void echoMessagePipeHandle(org.chromium.mojo.system.MessagePipeHandle a, EchoMessagePipeHandleResponse callback); |
+ interface EchoMessagePipeHandleResponse extends org.chromium.mojo.bindings.Callbacks.Callback1<org.chromium.mojo.system.MessagePipeHandle> { } |
+ |
+ void echoEnum(int a, EchoEnumResponse callback); |
+ interface EchoEnumResponse extends org.chromium.mojo.bindings.Callbacks.Callback1<Integer> { } |
+} |
+ |