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/sample_service.mojom

Issue 265793015: Mojo: Replace RemotePtr with InterfacePtr and InterfaceImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 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/sample_service.mojom
diff --git a/mojo/public/interfaces/bindings/tests/sample_service.mojom b/mojo/public/interfaces/bindings/tests/sample_service.mojom
index 03369986842e3fdc7b31a3c55d0ebe52dc2bc63d..c84070987f55af69d4587c1c49a91296af484b30 100644
--- a/mojo/public/interfaces/bindings/tests/sample_service.mojom
+++ b/mojo/public/interfaces/bindings/tests/sample_service.mojom
@@ -53,7 +53,7 @@ struct DefaultsTest {
Bar.Type bar_type = Bar.TYPE_BOTH;
};
-[Peer=ServiceClient]
+[Client=ServiceClient]
interface Service {
enum BazOptions {
BAZ_REGULAR = 0,
@@ -62,7 +62,6 @@ interface Service {
Frobinate@0(Foo foo @0, BazOptions baz @1, Port port @2);
};
-[Peer=Service]
interface ServiceClient {
DidFrobinate@0(int32 result @0);
};
@@ -70,7 +69,7 @@ interface ServiceClient {
// This interface is referenced above where it is defined. It also refers to
// itself from a method.
interface Port {
- PostMessage@0(string message_text @0, Port[] extra_ports@1);
+ PostMessage@0(string message_text @0, Port port@1);
};
}

Powered by Google App Engine
This is Rietveld 408576698