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

Unified Diff: components/arc/arc_service_manager.cc

Issue 1572483002: Implement OnGetNetworks for net.mojom (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase + incorporate code review feedback Created 4 years, 11 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
Index: components/arc/arc_service_manager.cc
diff --git a/components/arc/arc_service_manager.cc b/components/arc/arc_service_manager.cc
index 85f52fed093a3f9da624e784b121bdcb102c98b7..c358d14ca11f772ca04f7a9a2b8f2112b0814d21 100644
--- a/components/arc/arc_service_manager.cc
+++ b/components/arc/arc_service_manager.cc
@@ -13,6 +13,7 @@
#include "components/arc/clipboard/arc_clipboard_bridge.h"
#include "components/arc/ime/arc_ime_bridge.h"
#include "components/arc/input/arc_input_bridge.h"
+#include "components/arc/net/arc_net_host_impl.h"
#include "components/arc/power/arc_power_bridge.h"
#include "ui/arc/notification/arc_notification_manager.h"
@@ -34,6 +35,7 @@ ArcServiceManager::ArcServiceManager()
AddService(make_scoped_ptr(new ArcClipboardBridge(arc_bridge_service())));
AddService(make_scoped_ptr(new ArcImeBridge(arc_bridge_service())));
AddService(make_scoped_ptr(new ArcInputBridge(arc_bridge_service())));
+ AddService(make_scoped_ptr(new ArcNetHostImpl(arc_bridge_service())));
AddService(make_scoped_ptr(new ArcPowerBridge(arc_bridge_service())));
}

Powered by Google App Engine
This is Rietveld 408576698