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

Unified Diff: mojo/edk/system/platform_handle_dispatcher.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/platform_handle_dispatcher.h
diff --git a/mojo/edk/system/platform_handle_dispatcher.h b/mojo/edk/system/platform_handle_dispatcher.h
index a36c7a0e22f4fa4fa4e989962d10e8dcacc18f1f..9bd41db11a95f04f80525013ebc81cc60d977f94 100644
--- a/mojo/edk/system/platform_handle_dispatcher.h
+++ b/mojo/edk/system/platform_handle_dispatcher.h
@@ -24,16 +24,16 @@ class MOJO_SYSTEM_IMPL_EXPORT PlatformHandleDispatcher : public Dispatcher {
// Dispatcher:
Type GetType() const override;
- MojoResult Close() override;
+ MojoResult Close(RequestContext* request_context) override;
void StartSerialize(uint32_t* num_bytes,
uint32_t* num_ports,
uint32_t* num_handles) override;
bool EndSerialize(void* destination,
ports::PortName* ports,
PlatformHandle* handles) override;
- bool BeginTransit() override;
- void CompleteTransitAndClose() override;
- void CancelTransit() override;
+ bool BeginTransit(RequestContext* request_context) override;
+ void CompleteTransitAndClose(RequestContext* request_context) override;
+ void CancelTransit(RequestContext* request_context) override;
static scoped_refptr<PlatformHandleDispatcher> Deserialize(
const void* bytes,

Powered by Google App Engine
This is Rietveld 408576698