| 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 577323b95b0d804ff00e67f3c47def59998d34ec..ed3edf8973e5d5dff442162bbc2f07793672282e 100644
|
| --- a/mojo/edk/system/platform_handle_dispatcher.h
|
| +++ b/mojo/edk/system/platform_handle_dispatcher.h
|
| @@ -20,6 +20,11 @@ namespace system {
|
| // the embedder).
|
| class PlatformHandleDispatcher final : public SimpleDispatcher {
|
| public:
|
| + // The default/standard rights for a platform handle (wrapper) handle.
|
| + static constexpr MojoHandleRights kDefaultHandleRights =
|
| + MOJO_HANDLE_RIGHT_TRANSFER | MOJO_HANDLE_RIGHT_READ |
|
| + MOJO_HANDLE_RIGHT_WRITE;
|
| +
|
| static util::RefPtr<PlatformHandleDispatcher> Create(
|
| platform::ScopedPlatformHandle platform_handle) {
|
| return AdoptRef(new PlatformHandleDispatcher(platform_handle.Pass()));
|
|
|