Index: components/arc/arc_service_manager.h |
diff --git a/components/arc/arc_service_manager.h b/components/arc/arc_service_manager.h |
index ed4b434ad46ea2bc9fcacbf350497854d72137e2..2ccc9c0deec1584e439435fd90e6c64a036c7e95 100644 |
--- a/components/arc/arc_service_manager.h |
+++ b/components/arc/arc_service_manager.h |
@@ -8,11 +8,13 @@ |
#include "base/macros.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/threading/thread_checker.h" |
+#include "components/signin/core/account_id/account_id.h" |
namespace arc { |
class ArcBridgeService; |
class ArcInputBridge; |
+class ArcNotificationManager; |
// Manages creation and destruction of services that communicate with the ARC |
// instance via the ArcBridgeService. |
@@ -29,10 +31,13 @@ class ArcServiceManager { |
// called on the thread that this class was created on. |
static ArcServiceManager* Get(); |
+ void PostProfileInit(const AccountId& account_id); |
hidehiko
2015/12/17 07:47:51
Could you add comments, specifically when this wil
yoshiki
2015/12/17 19:15:13
Done.
|
+ |
private: |
base::ThreadChecker thread_checker_; |
scoped_ptr<ArcBridgeService> arc_bridge_service_; |
scoped_ptr<ArcInputBridge> arc_input_bridge_; |
+ scoped_ptr<ArcNotificationManager> arc_notification_manager_; |
DISALLOW_COPY_AND_ASSIGN(ArcServiceManager); |
}; |