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

Unified Diff: device/serial/data_stream.mojom

Issue 502853002: Mojom: Blanket change to mark all pointer/handle fields as nullable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/render_frame_setup.mojom ('k') | device/serial/serial.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/serial/data_stream.mojom
diff --git a/device/serial/data_stream.mojom b/device/serial/data_stream.mojom
index 689b38148411ede1b7ca63c39c3a2f47a841027b..ae64c4ee85c316649a2ac10202729565a76e5a92 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.
« no previous file with comments | « content/common/render_frame_setup.mojom ('k') | device/serial/serial.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698