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

Unified Diff: components/arc/test/fake_arc_bridge_instance.h

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_bootstrap.cc ('k') | components/arc/test/fake_arc_bridge_instance.cc » ('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.h
diff --git a/components/arc/test/fake_arc_bridge_instance.h b/components/arc/test/fake_arc_bridge_instance.h
index a121560c2cc3a2814157b7d8e6fe3b5931fd2841..9488ea5a34269d97bdf57a9edcd23dda8ab37482 100644
--- a/components/arc/test/fake_arc_bridge_instance.h
+++ b/components/arc/test/fake_arc_bridge_instance.h
@@ -12,20 +12,20 @@
namespace arc {
-class FakeArcBridgeInstance : public ArcBridgeInstance {
+class FakeArcBridgeInstance : public mojom::ArcBridgeInstance {
public:
FakeArcBridgeInstance();
~FakeArcBridgeInstance() override;
// Finalizes the connection between the host and the instance, and signals
// the host that the boot sequence has finished.
- void Bind(mojo::InterfaceRequest<ArcBridgeInstance> interface_request);
+ void Bind(mojo::InterfaceRequest<mojom::ArcBridgeInstance> interface_request);
// Resets the binding. Useful to simulate a restart.
void Unbind();
// ArcBridgeInstance:
- void Init(ArcBridgeHostPtr host) override;
+ void Init(mojom::ArcBridgeHostPtr host) override;
// Ensures the call to Init() has been dispatched.
void WaitForInitCall();
@@ -35,8 +35,8 @@ class FakeArcBridgeInstance : public ArcBridgeInstance {
private:
// Mojo endpoints.
- mojo::Binding<ArcBridgeInstance> binding_;
- ArcBridgeHostPtr host_ptr_;
+ mojo::Binding<mojom::ArcBridgeInstance> binding_;
+ mojom::ArcBridgeHostPtr host_ptr_;
int init_calls_ = 0;
DISALLOW_COPY_AND_ASSIGN(FakeArcBridgeInstance);
« no previous file with comments | « components/arc/test/fake_arc_bridge_bootstrap.cc ('k') | components/arc/test/fake_arc_bridge_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698