Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: device/serial/data_pipe.mojom

Issue 437933002: Add data pipe wrappers to be used to implement serial receive. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@serial-buffer
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698