Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module device.serial { | |
| 6 | |
| 7 [Client=DataPipeReceiver] | |
| 8 interface DataPipeProducer { | |
|
raymes
2014/08/05 06:26:44
DataStreamSender/Client
DataStreamReceiver/Client
Sam McNally
2014/08/05 07:26:33
Done with names as discussed.
| |
| 9 Init(handle<data_pipe_producer> producer_handle); | |
| 10 Resume(); | |
| 11 }; | |
| 12 | |
| 13 interface DataPipeReceiver { | |
| 14 OnError(uint32 bytes_since_last_error, int32 error); | |
| 15 }; | |
| 16 | |
| 17 } | |
| OLD | NEW |