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, |