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

Unified Diff: ipc/mojo/ipc_mojo_bootstrap_unittest.cc

Issue 1676913002: [mojo] Delete third_party/mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: let's try that again Created 4 years, 10 months 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 | « ipc/mojo/ipc_mojo_bootstrap.cc ('k') | ipc/mojo/ipc_mojo_handle_attachment.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/mojo/ipc_mojo_bootstrap_unittest.cc
diff --git a/ipc/mojo/ipc_mojo_bootstrap_unittest.cc b/ipc/mojo/ipc_mojo_bootstrap_unittest.cc
index 60046d16c529004cf6b88c8496f5839de9c0d4ab..8ee5556a7b905d196890a2792ddab5abcb89bb79 100644
--- a/ipc/mojo/ipc_mojo_bootstrap_unittest.cc
+++ b/ipc/mojo/ipc_mojo_bootstrap_unittest.cc
@@ -26,7 +26,7 @@ class TestingDelegate : public IPC::MojoBootstrap::Delegate {
public:
TestingDelegate() : passed_(false) {}
- void OnPipeAvailable(mojo::embedder::ScopedPlatformHandle handle,
+ void OnPipeAvailable(mojo::edk::ScopedPlatformHandle handle,
int32_t peer_pid) override;
void OnBootstrapError() override;
@@ -36,9 +36,8 @@ class TestingDelegate : public IPC::MojoBootstrap::Delegate {
bool passed_;
};
-void TestingDelegate::OnPipeAvailable(
- mojo::embedder::ScopedPlatformHandle handle,
- int32_t peer_pid) {
+void TestingDelegate::OnPipeAvailable(mojo::edk::ScopedPlatformHandle handle,
+ int32_t peer_pid) {
passed_ = true;
base::MessageLoop::current()->QuitWhenIdle();
}
« no previous file with comments | « ipc/mojo/ipc_mojo_bootstrap.cc ('k') | ipc/mojo/ipc_mojo_handle_attachment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698