Index: third_party/mojo/src/mojo/edk/system/platform_handle_dispatcher.h |
diff --git a/third_party/mojo/src/mojo/edk/system/platform_handle_dispatcher.h b/third_party/mojo/src/mojo/edk/system/platform_handle_dispatcher.h |
deleted file mode 100644 |
index 2a2337d087685b0cc7c172bfadd006ef8489bd65..0000000000000000000000000000000000000000 |
--- a/third_party/mojo/src/mojo/edk/system/platform_handle_dispatcher.h |
+++ /dev/null |
@@ -1,70 +0,0 @@ |
-// Copyright 2014 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_PLATFORM_HANDLE_DISPATCHER_H_ |
-#define THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_PLATFORM_HANDLE_DISPATCHER_H_ |
- |
-#include <utility> |
- |
-#include "mojo/public/cpp/system/macros.h" |
-#include "third_party/mojo/src/mojo/edk/embedder/scoped_platform_handle.h" |
-#include "third_party/mojo/src/mojo/edk/system/simple_dispatcher.h" |
-#include "third_party/mojo/src/mojo/edk/system/system_impl_export.h" |
- |
-namespace mojo { |
-namespace system { |
- |
-// A dispatcher that simply wraps/transports a |PlatformHandle| (only for use by |
-// the embedder). |
-class MOJO_SYSTEM_IMPL_EXPORT PlatformHandleDispatcher final |
- : public SimpleDispatcher { |
- public: |
- static scoped_refptr<PlatformHandleDispatcher> Create( |
- embedder::ScopedPlatformHandle platform_handle) { |
- return make_scoped_refptr( |
- new PlatformHandleDispatcher(std::move(platform_handle))); |
- } |
- |
- embedder::ScopedPlatformHandle PassPlatformHandle(); |
- |
- // |Dispatcher| public methods: |
- Type GetType() const override; |
- |
- // The "opposite" of |SerializeAndClose()|. (Typically this is called by |
- // |Dispatcher::Deserialize()|.) |
- static scoped_refptr<PlatformHandleDispatcher> Deserialize( |
- Channel* channel, |
- const void* source, |
- size_t size, |
- embedder::PlatformHandleVector* platform_handles); |
- |
- private: |
- explicit PlatformHandleDispatcher( |
- embedder::ScopedPlatformHandle platform_handle); |
- ~PlatformHandleDispatcher() override; |
- |
- // |Dispatcher| protected methods: |
- void CloseImplNoLock() override; |
- scoped_refptr<Dispatcher> CreateEquivalentDispatcherAndCloseImplNoLock() |
- override; |
- void StartSerializeImplNoLock(Channel* channel, |
- size_t* max_size, |
- size_t* max_platform_handles) override |
- MOJO_NOT_THREAD_SAFE; |
- bool EndSerializeAndCloseImplNoLock( |
- Channel* channel, |
- void* destination, |
- size_t* actual_size, |
- embedder::PlatformHandleVector* platform_handles) override |
- MOJO_NOT_THREAD_SAFE; |
- |
- embedder::ScopedPlatformHandle platform_handle_ MOJO_GUARDED_BY(mutex()); |
- |
- MOJO_DISALLOW_COPY_AND_ASSIGN(PlatformHandleDispatcher); |
-}; |
- |
-} // namespace system |
-} // namespace mojo |
- |
-#endif // THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_PLATFORM_HANDLE_DISPATCHER_H_ |