diff options
Diffstat (limited to 'mojo/public/shell/lib/shell.mojom')
-rw-r--r-- | mojo/public/shell/lib/shell.mojom | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mojo/public/shell/lib/shell.mojom b/mojo/public/shell/lib/shell.mojom index 69827da5..39eae78 100644 --- a/mojo/public/shell/lib/shell.mojom +++ b/mojo/public/shell/lib/shell.mojom @@ -8,12 +8,12 @@ module mojo { interface Shell { // Loads url. mojo:{service} will result in the user of the value of the // --origin flag to the shell being used. - void Connect(string url, handle<message_pipe> client_handle); + Connect(string url, handle<message_pipe> client_handle); }; [Peer=Shell] interface ShellClient { - void AcceptConnection(string url, handle<message_pipe> client_handle); + AcceptConnection(string url, handle<message_pipe> client_handle); }; } |