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

Unified Diff: components/arc/arc_bridge_bootstrap.cc

Issue 1885683005: Add module suffix in .mojom files for components/arc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase only Created 4 years, 8 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 | « components/arc/arc_bridge_bootstrap.h ('k') | components/arc/arc_bridge_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/arc_bridge_bootstrap.cc
diff --git a/components/arc/arc_bridge_bootstrap.cc b/components/arc/arc_bridge_bootstrap.cc
index b28805171f66531f093242a7b08338d75a10b5a8..75cc353defd8d22148bc2bf490790259f97c5131 100644
--- a/components/arc/arc_bridge_bootstrap.cc
+++ b/components/arc/arc_bridge_bootstrap.cc
@@ -287,9 +287,9 @@ void ArcBridgeBootstrapImpl::OnInstanceConnected(base::ScopedFD fd) {
return;
}
SetState(State::READY);
- ArcBridgeInstancePtr instance;
- instance.Bind(
- mojo::InterfacePtrInfo<ArcBridgeInstance>(std::move(server_pipe), 0u));
+ mojom::ArcBridgeInstancePtr instance;
+ instance.Bind(mojo::InterfacePtrInfo<mojom::ArcBridgeInstance>(
+ std::move(server_pipe), 0u));
delegate_->OnConnectionEstablished(std::move(instance));
}
« no previous file with comments | « components/arc/arc_bridge_bootstrap.h ('k') | components/arc/arc_bridge_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698