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

Unified Diff: components/arc/net/arc_net_host_impl.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/metrics/arc_metrics_service.cc ('k') | components/arc/net/arc_net_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/net/arc_net_host_impl.h
diff --git a/components/arc/net/arc_net_host_impl.h b/components/arc/net/arc_net_host_impl.h
index f4c15f8061b396a7b4ff11f9d994bf23f1ae9077..04de3c1977fdfbcc87c9fcd48a70a450d356c748 100644
--- a/components/arc/net/arc_net_host_impl.h
+++ b/components/arc/net/arc_net_host_impl.h
@@ -26,7 +26,7 @@ class ArcBridgeService;
class ArcNetHostImpl : public ArcService,
public ArcBridgeService::Observer,
public chromeos::NetworkStateHandlerObserver,
- public NetHost {
+ public mojom::NetHost {
public:
// The constructor will register an Observer with ArcBridgeService.
explicit ArcNetHostImpl(ArcBridgeService* arc_bridge_service);
@@ -39,7 +39,7 @@ class ArcNetHostImpl : public ArcService,
const GetNetworksDeprecatedCallback& callback) override;
// Called when a GetNetworks call is sent from ARC.
- void GetNetworks(GetNetworksRequestType type,
+ void GetNetworks(mojom::GetNetworksRequestType type,
const GetNetworksCallback& callback) override;
// Called when a GetWifiEnabledState call is sent from ARC.
@@ -65,7 +65,7 @@ class ArcNetHostImpl : public ArcService,
private:
base::ThreadChecker thread_checker_;
- mojo::Binding<arc::NetHost> binding_;
+ mojo::Binding<arc::mojom::NetHost> binding_;
DISALLOW_COPY_AND_ASSIGN(ArcNetHostImpl);
};
« no previous file with comments | « components/arc/metrics/arc_metrics_service.cc ('k') | components/arc/net/arc_net_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698