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

Unified Diff: mojo/system/data_pipe_producer_dispatcher.cc

Issue 345463003: Mojo: MojoWaitFlags -> MojoHandleSignals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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/system/data_pipe_producer_dispatcher.h ('k') | mojo/system/dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/system/data_pipe_producer_dispatcher.cc
diff --git a/mojo/system/data_pipe_producer_dispatcher.cc b/mojo/system/data_pipe_producer_dispatcher.cc
index 3eeec7538a3f6d3e45b43fa0d7ff76f8c9ae01d0..ec99549b5438d4916e0ddc87a983dbf3db7b2699 100644
--- a/mojo/system/data_pipe_producer_dispatcher.cc
+++ b/mojo/system/data_pipe_producer_dispatcher.cc
@@ -87,11 +87,12 @@ MojoResult DataPipeProducerDispatcher::EndWriteDataImplNoLock(
return data_pipe_->ProducerEndWriteData(num_bytes_written);
}
-MojoResult DataPipeProducerDispatcher::AddWaiterImplNoLock(Waiter* waiter,
- MojoWaitFlags flags,
- uint32_t context) {
+MojoResult DataPipeProducerDispatcher::AddWaiterImplNoLock(
+ Waiter* waiter,
+ MojoHandleSignals signals,
+ uint32_t context) {
lock().AssertAcquired();
- return data_pipe_->ProducerAddWaiter(waiter, flags, context);
+ return data_pipe_->ProducerAddWaiter(waiter, signals, context);
}
void DataPipeProducerDispatcher::RemoveWaiterImplNoLock(Waiter* waiter) {
« no previous file with comments | « mojo/system/data_pipe_producer_dispatcher.h ('k') | mojo/system/dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698