Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 module content.mojom; | 5 module mus.mojom; |
| 6 | 6 |
| 7 interface BrowserTarget { | 7 // import "components/mus/public/interfaces/command_buffer.mojom"; |
|
sky
2016/04/27 21:11:21
?
Peng
2016/04/27 22:09:40
Done.
| |
| 8 Start() => (); | 8 |
| 9 Stop(); | 9 struct ChannelHandle { |
|
sky
2016/04/27 21:11:21
Document this. Especially what 'socket' means.
Peng
2016/04/27 22:09:40
Done.
| |
| 10 string name; | |
| 11 handle socket; | |
| 10 }; | 12 }; |
| OLD | NEW |