Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(867)

Unified Diff: mojo/edk/system/channel.h

Issue 1483823004: EDK: Move {platform_handle,scoped_platform_handle}.* to //mojo/edk/platform. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/edk/platform/scoped_platform_handle.h ('k') | mojo/edk/system/channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « mojo/edk/platform/scoped_platform_handle.h ('k') | mojo/edk/system/channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698