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

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

Issue 2832303002: Fifo order should be preserved for messages on associated interfaces. (Closed)
Patch Set: Add string sender and use that instead of integer sender twice. Created 3 years, 8 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
« no previous file with comments | « no previous file | mojo/public/js/connector.js » ('j') | mojo/public/js/router.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/interfaces/bindings/tests/test_associated_interfaces.mojom
diff --git a/mojo/public/interfaces/bindings/tests/test_associated_interfaces.mojom b/mojo/public/interfaces/bindings/tests/test_associated_interfaces.mojom
index 3858330aecf242a6675b19d7fd9dd6d23a582e50..3c220d785d9dba8893f9ce2d619d1a16a2b44bea 100644
--- a/mojo/public/interfaces/bindings/tests/test_associated_interfaces.mojom
+++ b/mojo/public/interfaces/bindings/tests/test_associated_interfaces.mojom
@@ -40,6 +40,11 @@ interface IntegerSender {
Send(int32 value);
};
+interface StringSender {
+ Echo(string value) => (string value);
+ Send(string value);
+};
+
interface IntegerSenderConnection {
GetSender(associated IntegerSender& sender);
AsyncGetSender() => (associated IntegerSender sender);
@@ -50,6 +55,11 @@ interface IntegerSenderConnectionAtBothEnds {
SetSender(associated IntegerSender sender) => (int32 value);
};
+interface SenderConnectionBindLater {
+ GetIntegerSender(associated IntegerSender& sender, int32 callback_type);
+ GetStringSender(associated StringSender& sender, int32 callback_type);
+};
+
interface AssociatedPingProvider {
GetPing(associated PingService& request);
};
« no previous file with comments | « no previous file | mojo/public/js/connector.js » ('j') | mojo/public/js/router.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698