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

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

Issue 2276043002: Support custom message filtering on Mojo binding objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment 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
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 534cfd8d81e9e501fefaee0f5d7def95d6b556fc..a5ae0dcf9747733fa4bffe821e3e2d3d3ab8ed3f 100644
--- a/mojo/public/interfaces/bindings/tests/test_associated_interfaces.mojom
+++ b/mojo/public/interfaces/bindings/tests/test_associated_interfaces.mojom
@@ -4,6 +4,8 @@
module mojo.test;
+import "mojo/public/interfaces/bindings/tests/ping_service.mojom";
+
interface FooInterface {};
struct StructContainsAssociated {
@@ -42,3 +44,7 @@ interface IntegerSenderConnection {
GetSender(associated IntegerSender& sender);
AsyncGetSender() => (associated IntegerSender sender);
};
+
+interface AssociatedPingProvider {
+ GetPing(associated PingService& request);
+};

Powered by Google App Engine
This is Rietveld 408576698