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

Unified Diff: components/arc/test/fake_arc_bridge_instance.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/test/fake_arc_bridge_instance.h ('k') | components/arc/test/fake_notifications_instance.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/test/fake_arc_bridge_instance.cc
diff --git a/components/arc/test/fake_arc_bridge_instance.cc b/components/arc/test/fake_arc_bridge_instance.cc
index cfa0737b40f245c38b3358d6df63e0cd7411a914..81aa152de91cf6b7fd253c4a9918f4ee47ff8062 100644
--- a/components/arc/test/fake_arc_bridge_instance.cc
+++ b/components/arc/test/fake_arc_bridge_instance.cc
@@ -11,7 +11,7 @@ namespace arc {
FakeArcBridgeInstance::FakeArcBridgeInstance() : binding_(this) {}
FakeArcBridgeInstance::~FakeArcBridgeInstance() {}
-void FakeArcBridgeInstance::Init(ArcBridgeHostPtr host) {
+void FakeArcBridgeInstance::Init(mojom::ArcBridgeHostPtr host) {
host_ptr_ = std::move(host);
init_calls_++;
}
@@ -23,7 +23,7 @@ void FakeArcBridgeInstance::Unbind() {
}
void FakeArcBridgeInstance::Bind(
- mojo::InterfaceRequest<ArcBridgeInstance> interface_request) {
+ mojo::InterfaceRequest<mojom::ArcBridgeInstance> interface_request) {
binding_.Bind(std::move(interface_request));
}
« no previous file with comments | « components/arc/test/fake_arc_bridge_instance.h ('k') | components/arc/test/fake_notifications_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698