summaryrefslogtreecommitdiffstats
path: root/device/serial/data_stream.mojom
diff options
context:
space:
mode:
Diffstat (limited to 'device/serial/data_stream.mojom')
-rw-r--r--device/serial/data_stream.mojom4
1 files changed, 2 insertions, 2 deletions
diff --git a/device/serial/data_stream.mojom b/device/serial/data_stream.mojom
index ae64c4e..689b381 100644
--- a/device/serial/data_stream.mojom
+++ b/device/serial/data_stream.mojom
@@ -8,7 +8,7 @@ module device.serial {
interface DataSource {
// Initializes this DataSource with a data pipe handle to use for data
// transmission.
- Init(handle<data_pipe_producer>? producer_handle);
+ Init(handle<data_pipe_producer> producer_handle);
// Resumes sending data after it has been stopped due to an error.
Resume();
@@ -25,7 +25,7 @@ interface DataSourceClient {
interface DataSink {
// Initializes this DataSink with a data pipe handle to use for data
// transmission.
- Init(handle<data_pipe_consumer>? consumer_handle);
+ Init(handle<data_pipe_consumer> consumer_handle);
// Requests the cancellation of any data that has been written to the pipe,
// but has not yet been sent to the sink.