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

Unified Diff: ipc/ipc_test.mojom

Issue 2195953002: Adds sync message support to Channel-associated interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 4 years, 4 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 | « ipc/ipc_sync_channel.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_test.mojom
diff --git a/ipc/ipc_test.mojom b/ipc/ipc_test.mojom
index 9c1b30e2a3a51688acc3f8fe1746e37f430856f5..ebe8507011c7cc320f26793c4c62dce9345a4f71 100644
--- a/ipc/ipc_test.mojom
+++ b/ipc/ipc_test.mojom
@@ -5,6 +5,18 @@
module IPC.mojom;
interface SimpleTestDriver {
- ExpectString(string str);
+ ExpectValue(int32 value);
+
+ [Sync]
+ GetExpectedValue() => (int32 value);
+
+ [Sync]
+ RequestValue() => (int32 value);
+
RequestQuit() => ();
};
+
+interface SimpleTestClient {
+ [Sync]
+ RequestValue() => (int32 value);
+};
« no previous file with comments | « ipc/ipc_sync_channel.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698