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

Unified Diff: mojo/public/go/system/system.go

Issue 1374463002: Remove support for "all or none" two-phase data pipe read/write. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: oops Created 5 years, 3 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 | « mojo/public/go/system/data_pipe.go ('k') | mojo/public/platform/native_cgo/system_cgo.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/go/system/system.go
diff --git a/mojo/public/go/system/system.go b/mojo/public/go/system/system.go
index 9481c071fd6fc650470e93e3151c94aaacb6ff0b..efcc397536aef8a51536017c0f73caf5188f4bbe 100644
--- a/mojo/public/go/system/system.go
+++ b/mojo/public/go/system/system.go
@@ -20,11 +20,11 @@ type MojoSystem interface {
CreateDataPipe(flags, elementNumBytes, capacityNumBytes uint32) (result uint32, producerHandle, consumerHandle uint32)
CreateDataPipeWithDefaultOptions() (result uint32, producerHandle, consumerHandle uint32)
WriteData(producerHandle uint32, buf []byte, flags uint32) (result uint32, bytesWritten uint32)
- BeginWriteData(producerHandle uint32, numBytes uint32, flags uint32) (result uint32, buf []byte)
+ BeginWriteData(producerHandle uint32, flags uint32) (result uint32, buf []byte)
EndWriteData(producerHandle uint32, numBytesWritten uint32) (result uint32)
ReadData(consumerHandle, flags uint32) (result uint32, buf []byte)
- BeginReadData(consumerHandle uint32, numBytes uint32, flags uint32) (result uint32, buf []byte)
+ BeginReadData(consumerHandle uint32, flags uint32) (result uint32, buf []byte)
EndReadData(consumerHandle uint32, numBytesRead uint32) (result uint32)
// Time
« no previous file with comments | « mojo/public/go/system/data_pipe.go ('k') | mojo/public/platform/native_cgo/system_cgo.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698