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

Unified Diff: mojo/not-to-commit/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/sample/Provider.java

Issue 317273006: Add serialization/deserialization of structs for mojo java bindings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Follow review Created 6 years, 6 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/not-to-commit/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/sample/Provider.java
diff --git a/mojo/not-to-commit/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/sample/Provider.java b/mojo/not-to-commit/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/sample/Provider.java
deleted file mode 100644
index 734d11fe4b3eb9a8ce6a1847e463d7e81ca50ec4..0000000000000000000000000000000000000000
--- a/mojo/not-to-commit/mojo_public_test_interfaces/src/org/chromium/mojo/bindings/test/sample/Provider.java
+++ /dev/null
@@ -1,28 +0,0 @@
-// 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.sample;
-
-public interface Provider extends org.chromium.mojo.bindings.InterfaceWithClient<ProviderClient> {
-
- 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> { }
-
-}
-

Powered by Google App Engine
This is Rietveld 408576698