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

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

Issue 1748503002: [mojo-edk] Add MojoWatch and MojoCancelWatch APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 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
Index: mojo/edk/system/wait_set_dispatcher.cc
diff --git a/mojo/edk/system/wait_set_dispatcher.cc b/mojo/edk/system/wait_set_dispatcher.cc
index a083ce961b3804640e55c06488af09a7f44c9ec9..231f1e84e5fdd00612a96650c6d4d229d45b2acb 100644
--- a/mojo/edk/system/wait_set_dispatcher.cc
+++ b/mojo/edk/system/wait_set_dispatcher.cc
@@ -43,7 +43,7 @@ Dispatcher::Type WaitSetDispatcher::GetType() const {
return Type::WAIT_SET;
}
-MojoResult WaitSetDispatcher::Close() {
+MojoResult WaitSetDispatcher::Close(RequestContext* request_context) {
base::AutoLock lock(lock_);
if (is_closed_)
@@ -278,7 +278,7 @@ void WaitSetDispatcher::RemoveAwakable(Awakable* awakable,
*signals_state = GetHandleSignalsState();
}
-bool WaitSetDispatcher::BeginTransit() {
+bool WaitSetDispatcher::BeginTransit(RequestContext* request_context) {
// You can't transfer wait sets!
return false;
}

Powered by Google App Engine
This is Rietveld 408576698