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

Unified Diff: third_party/mojo/src/mojo/public/go/system/mojo_types.go

Issue 1101303002: Update mojo sdk to rev e7270700d671fa8e458b4d8c9e47f7bcfb65da0b (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Actualy provide a default TaskTracker impl Created 5 years, 8 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: third_party/mojo/src/mojo/public/go/system/mojo_types.go
diff --git a/third_party/mojo/src/mojo/public/go/system/mojo_types.go b/third_party/mojo/src/mojo/public/go/system/mojo_types.go
index 69051e7ab360ae9425dcc0de3c90ff0b466fab81..1eb5f7322cd94f0ceeca0d50884e9452a2bc4b5e 100644
--- a/third_party/mojo/src/mojo/public/go/system/mojo_types.go
+++ b/third_party/mojo/src/mojo/public/go/system/mojo_types.go
@@ -101,27 +101,27 @@ type MojoHandleSignalsState struct {
// DataPipeOptions is used to specify creation parameters for a data pipe.
type DataPipeOptions struct {
- flags MojoCreateDataPipeOptionsFlags
+ Flags MojoCreateDataPipeOptionsFlags
// The size of an element in bytes. All transactions and buffers will
// be an integral number of elements.
- elemSize uint32
+ ElemSize uint32
// The capacity of the data pipe in bytes. Must be a multiple of elemSize.
- capacity uint32
+ Capacity uint32
}
// MessagePipeOptions is used to specify creation parameters for a message pipe.
type MessagePipeOptions struct {
- flags MojoCreateMessagePipeOptionsFlags
+ Flags MojoCreateMessagePipeOptionsFlags
}
// SharedBufferOptions is used to specify creation parameters for a
// shared buffer.
type SharedBufferOptions struct {
- flags MojoCreateSharedBufferOptionsFlags
+ Flags MojoCreateSharedBufferOptionsFlags
}
// DuplicateBufferHandleOptions is used to specify parameters in
// duplicating access to a shared buffer.
type DuplicateBufferHandleOptions struct {
- flags MojoDuplicateBufferHandleOptionsFlags
+ Flags MojoDuplicateBufferHandleOptionsFlags
}
« no previous file with comments | « third_party/mojo/src/mojo/public/go/system/core.go ('k') | third_party/mojo/src/mojo/public/go/system/shared_buffer.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698