| Index: mojo/edk/system/channel.h
|
| diff --git a/mojo/edk/system/channel.h b/mojo/edk/system/channel.h
|
| index 166e385d9b6b812353791bc3e1e037c796fbc6d7..4ec69fe50fc98cb08775b45d88e45745fe433dde 100644
|
| --- a/mojo/edk/system/channel.h
|
| +++ b/mojo/edk/system/channel.h
|
| @@ -10,7 +10,7 @@
|
| #include <memory>
|
| #include <unordered_map>
|
|
|
| -#include "mojo/edk/embedder/scoped_platform_handle.h"
|
| +#include "mojo/edk/platform/scoped_platform_handle.h"
|
| #include "mojo/edk/system/channel_endpoint.h"
|
| #include "mojo/edk/system/channel_endpoint_id.h"
|
| #include "mojo/edk/system/incoming_endpoint.h"
|
| @@ -191,18 +191,18 @@ class Channel final : public util::RefCountedThreadSafe<Channel>,
|
| // |RawChannel::Delegate| implementation (only called on the creation thread):
|
| void OnReadMessage(
|
| const MessageInTransit::View& message_view,
|
| - std::unique_ptr<std::vector<embedder::ScopedPlatformHandle>>
|
| + std::unique_ptr<std::vector<platform::ScopedPlatformHandle>>
|
| platform_handles) override;
|
| void OnError(Error error) override;
|
|
|
| // Helpers for |OnReadMessage| (only called on the creation thread):
|
| void OnReadMessageForEndpoint(
|
| const MessageInTransit::View& message_view,
|
| - std::unique_ptr<std::vector<embedder::ScopedPlatformHandle>>
|
| + std::unique_ptr<std::vector<platform::ScopedPlatformHandle>>
|
| platform_handles);
|
| void OnReadMessageForChannel(
|
| const MessageInTransit::View& message_view,
|
| - std::unique_ptr<std::vector<embedder::ScopedPlatformHandle>>
|
| + std::unique_ptr<std::vector<platform::ScopedPlatformHandle>>
|
| platform_handles);
|
|
|
| // Handles "attach and run endpoint" messages.
|
|
|