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

Unified Diff: mojo/edk/system/local_data_pipe.cc

Issue 936283002: Oops, calling {Producer,Consumer}CloseImplNoLock() isn't the same as calling {Producer,Consumer}Clo… (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
« mojo/edk/system/data_pipe.cc ('K') | « mojo/edk/system/data_pipe.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/local_data_pipe.cc
diff --git a/mojo/edk/system/local_data_pipe.cc b/mojo/edk/system/local_data_pipe.cc
index c0ee16ba2aeb7b180517d0ba0238f2f5639ddb63..6d0760b1ac13105b4814d743733b40bd60b1cf73 100644
--- a/mojo/edk/system/local_data_pipe.cc
+++ b/mojo/edk/system/local_data_pipe.cc
@@ -182,7 +182,7 @@ bool LocalDataPipe::ProducerEndSerializeImplNoLock(
size_t* actual_size,
embedder::PlatformHandleVector* platform_handles) {
// TODO(vtl): Support serializing producer data pipe handles.
- ProducerCloseImplNoLock();
+ ProducerCloseNoLock();
return false;
}
@@ -336,7 +336,7 @@ bool LocalDataPipe::ConsumerEndSerializeImplNoLock(
size_t* actual_size,
embedder::PlatformHandleVector* platform_handles) {
// TODO(vtl): Support serializing consumer data pipe handles.
- ConsumerCloseImplNoLock();
+ ConsumerCloseNoLock();
return false;
}
« mojo/edk/system/data_pipe.cc ('K') | « mojo/edk/system/data_pipe.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698