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

Unified Diff: mojo/edk/system/handle_table.h

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/handle_table.h
diff --git a/mojo/edk/system/handle_table.h b/mojo/edk/system/handle_table.h
index ecfb21e0659690fbc717bc778fc9bee84db2cb74..739857d47b0b136daac02d77f1fc7d05020d6c04 100644
--- a/mojo/edk/system/handle_table.h
+++ b/mojo/edk/system/handle_table.h
@@ -40,12 +40,16 @@ class HandleTable {
MojoResult BeginTransit(
const MojoHandle* handles,
uint32_t num_handles,
- std::vector<Dispatcher::DispatcherInTransit>* dispatchers);
+ std::vector<Dispatcher::DispatcherInTransit>* dispatchers,
+ Dispatcher::RequestContext* request_context);
void CompleteTransitAndClose(
- const std::vector<Dispatcher::DispatcherInTransit>& dispatchers);
+ const std::vector<Dispatcher::DispatcherInTransit>& dispatchers,
+ Dispatcher::RequestContext* request_context);
+
void CancelTransit(
- const std::vector<Dispatcher::DispatcherInTransit>& dispatchers);
+ const std::vector<Dispatcher::DispatcherInTransit>& dispatchers,
+ Dispatcher::RequestContext* request_context);
void GetActiveHandlesForTest(std::vector<MojoHandle> *handles);

Powered by Google App Engine
This is Rietveld 408576698