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

Unified Diff: mojo/services/public/interfaces/gpu/gpu.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/public/interfaces/gpu/gpu.mojom
diff --git a/mojo/services/public/interfaces/gpu/gpu.mojom b/mojo/services/public/interfaces/gpu/gpu.mojom
index d6629cd39ac1e05761d2fadaf070159a13c09c45..881c6be0a3a7f013b5118ea8eddf9fac2fba015a 100644
--- a/mojo/services/public/interfaces/gpu/gpu.mojom
+++ b/mojo/services/public/interfaces/gpu/gpu.mojom
@@ -8,8 +8,8 @@ import "mojo/services/public/interfaces/geometry/geometry.mojom"
module mojo {
interface Gpu {
- CreateOnscreenGLES2Context(uint64 native_viewport_id, Size size, CommandBuffer& gles2_client);
- CreateOffscreenGLES2Context(CommandBuffer& gles2_client);
+ CreateOnscreenGLES2Context(uint64 native_viewport_id, Size? size, CommandBuffer&? gles2_client);
+ CreateOffscreenGLES2Context(CommandBuffer&? gles2_client);
};
}

Powered by Google App Engine
This is Rietveld 408576698