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

Unified Diff: mojo/services/gles2/command_buffer.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
Index: mojo/services/gles2/command_buffer.mojom
diff --git a/mojo/services/gles2/command_buffer.mojom b/mojo/services/gles2/command_buffer.mojom
index faba8accc984dacc50be22ffd633f077aa2bc084..302dcf4c4ef0f01e6bb417eae8c80ffa3e55a7ff 100644
--- a/mojo/services/gles2/command_buffer.mojom
+++ b/mojo/services/gles2/command_buffer.mojom
@@ -16,18 +16,18 @@ struct CommandBufferState {
interface CommandBufferSyncClient {
DidInitialize(bool success);
- DidMakeProgress(CommandBufferState state);
+ DidMakeProgress(CommandBufferState? state);
};
[Client=CommandBufferClient]
interface CommandBuffer {
- Initialize(CommandBufferSyncClient sync_client,
- handle<shared_buffer> shared_state);
+ Initialize(CommandBufferSyncClient? sync_client,
+ handle<shared_buffer>? shared_state);
SetGetBuffer(int32 buffer);
Flush(int32 put_offset);
MakeProgress(int32 last_get_offset);
RegisterTransferBuffer(
- int32 id, handle<shared_buffer> transfer_buffer, uint32 size);
+ int32 id, handle<shared_buffer>? transfer_buffer, uint32 size);
DestroyTransferBuffer(int32 id);
Echo() => ();
« no previous file with comments | « mojo/services/dbus_echo/echo.mojom ('k') | mojo/services/public/interfaces/content_handler/content_handler.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698