| Index: mojo/edk/system/platform_handle_dispatcher.cc
|
| diff --git a/mojo/edk/system/platform_handle_dispatcher.cc b/mojo/edk/system/platform_handle_dispatcher.cc
|
| index aab08d77b2530e91cde143d6d112023ee60cac7a..f2c6e72cf4cfadd56f6c241fea55b7090aa30dfc 100644
|
| --- a/mojo/edk/system/platform_handle_dispatcher.cc
|
| +++ b/mojo/edk/system/platform_handle_dispatcher.cc
|
| @@ -35,6 +35,11 @@ Dispatcher::Type PlatformHandleDispatcher::GetType() const {
|
| return Type::PLATFORM_HANDLE;
|
| }
|
|
|
| +bool PlatformHandleDispatcher::SupportsEntrypointClass(
|
| + EntrypointClass entrypoint_class) const {
|
| + return false;
|
| +}
|
| +
|
| // static
|
| RefPtr<PlatformHandleDispatcher> PlatformHandleDispatcher::Deserialize(
|
| Channel* channel,
|
| @@ -73,8 +78,7 @@ PlatformHandleDispatcher::PlatformHandleDispatcher(
|
| ScopedPlatformHandle platform_handle)
|
| : platform_handle_(platform_handle.Pass()) {}
|
|
|
| -PlatformHandleDispatcher::~PlatformHandleDispatcher() {
|
| -}
|
| +PlatformHandleDispatcher::~PlatformHandleDispatcher() {}
|
|
|
| void PlatformHandleDispatcher::CloseImplNoLock() {
|
| mutex().AssertHeld();
|
|
|