Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module mojo { | |
| 6 | |
| 7 [Peer=HelloWorldClient] | |
| 8 interface HelloWorldService { | |
| 9 void Greeting(string greeting @0) @0; | |
|
darin (slow to review)
2013/11/13 22:57:49
note: ordinals are optional.
| |
| 10 }; | |
| 11 | |
| 12 [Peer=HelloWorldService] | |
| 13 interface HelloWorldClient { | |
| 14 void DidReceiveGreeting(int32 result @0) @0; | |
| 15 }; | |
| 16 | |
| 17 } | |
| OLD | NEW |