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

Unified Diff: components/arc/arc_service_manager.h

Issue 1572483002: Implement OnGetNetworks for net.mojom (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix onc dep, take 2 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.h
diff --git a/components/arc/arc_service_manager.h b/components/arc/arc_service_manager.h
index 8b0bc8c23bcbcd84774518ab8fca5665d257685e..a0ff7ffa2630d8bfaaf5df061aea26e6e482d92b 100644
--- a/components/arc/arc_service_manager.h
+++ b/components/arc/arc_service_manager.h
@@ -8,6 +8,7 @@
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/thread_checker.h"
+#include "components/arc/common/net.mojom.h"
#include "components/signin/core/account_id/account_id.h"
namespace arc {
@@ -17,7 +18,9 @@ class ArcBridgeService;
class ArcClipboardBridge;
class ArcImeBridge;
class ArcInputBridge;
+class ArcNetHostImpl;
class ArcNotificationManager;
+class ArcSettingsBridge;
class ArcPowerBridge;
class ArcSettingsBridge;
class ArcVideoBridge;
@@ -51,6 +54,7 @@ class ArcServiceManager {
scoped_ptr<ArcClipboardBridge> arc_clipboard_bridge_;
scoped_ptr<ArcImeBridge> arc_ime_bridge_;
scoped_ptr<ArcInputBridge> arc_input_bridge_;
+ scoped_ptr<arc::NetHost> arc_net_host_;
Luis Héctor Chávez 2016/01/19 20:51:58 This is going away soon, but ArcNetHostImpl?
cernekee 2016/01/20 01:37:17 Done.
scoped_ptr<ArcNotificationManager> arc_notification_manager_;
scoped_ptr<ArcSettingsBridge> arc_settings_bridge_;
scoped_ptr<ArcPowerBridge> arc_power_bridge_;

Powered by Google App Engine
This is Rietveld 408576698