| Index: mojo/public/interfaces/bindings/tests/sample_interfaces.mojom
|
| diff --git a/mojo/public/interfaces/bindings/tests/sample_interfaces.mojom b/mojo/public/interfaces/bindings/tests/sample_interfaces.mojom
|
| index 462e3cdb431fbdeb2e16490385ee488e5b6bb6dc..597fd0d6be6446eb3cf08cf2460718c90f91f541 100644
|
| --- a/mojo/public/interfaces/bindings/tests/sample_interfaces.mojom
|
| +++ b/mojo/public/interfaces/bindings/tests/sample_interfaces.mojom
|
| @@ -10,7 +10,7 @@ enum Enum {
|
| ENUM_VALUE
|
| };
|
|
|
| -[Peer=ProviderClient]
|
| +[Client=ProviderClient]
|
| interface Provider {
|
| EchoString(string a) => (string a);
|
| EchoStrings(string a, string b) => (string a, string b);
|
| @@ -18,7 +18,7 @@ interface Provider {
|
| EchoEnum(Enum a) => (Enum a);
|
| };
|
|
|
| -[Peer=Provider]
|
| +// TODO(darin): We shouldn't need this, but JS bindings don't work without it.
|
| interface ProviderClient {
|
| };
|
|
|
|
|