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

Side by Side Diff: components/arc/arc_service_manager.h

Issue 1966133002: Run RemoveArcData after a user has opted out (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_ARC_ARC_SERVICE_MANAGER_H_ 5 #ifndef COMPONENTS_ARC_ARC_SERVICE_MANAGER_H_
6 #define COMPONENTS_ARC_ARC_SERVICE_MANAGER_H_ 6 #define COMPONENTS_ARC_ARC_SERVICE_MANAGER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/task_runner.h" 13 #include "base/task_runner.h"
14 #include "base/threading/thread_checker.h" 14 #include "base/threading/thread_checker.h"
15 #include "components/arc/intent_helper/activity_icon_loader.h" 15 #include "components/arc/intent_helper/activity_icon_loader.h"
16 #include "components/prefs/pref_member.h"
16 #include "components/signin/core/account_id/account_id.h" 17 #include "components/signin/core/account_id/account_id.h"
17 18
18 namespace arc { 19 namespace arc {
19 20
20 class ArcBridgeService; 21 class ArcBridgeService;
21 class ArcService; 22 class ArcService;
23 class ArcUserDataService;
hidehiko 2016/06/14 05:13:01 nit: unnecessary.
22 24
23 // Manages creation and destruction of services that communicate with the ARC 25 // Manages creation and destruction of services that communicate with the ARC
24 // instance via the ArcBridgeService. 26 // instance via the ArcBridgeService.
25 class ArcServiceManager { 27 class ArcServiceManager {
26 public: 28 public:
27 explicit ArcServiceManager( 29 explicit ArcServiceManager(
28 scoped_refptr<base::TaskRunner> blocking_task_runner); 30 scoped_refptr<base::TaskRunner> blocking_task_runner);
29 virtual ~ArcServiceManager(); 31 virtual ~ArcServiceManager();
30 32
31 // |arc_bridge_service| can only be accessed on the thread that this 33 // |arc_bridge_service| can only be accessed on the thread that this
32 // class was created on. 34 // class was created on.
33 ArcBridgeService* arc_bridge_service(); 35 ArcBridgeService* arc_bridge_service();
34 36
35 // Adds a service to the managed services list. 37 // Adds a service to the managed services list.
36 void AddService(std::unique_ptr<ArcService> service); 38 void AddService(std::unique_ptr<ArcService> service);
37 39
38 // Gets the global instance of the ARC Service Manager. This can only be 40 // Gets the global instance of the ARC Service Manager. This can only be
39 // called on the thread that this class was created on. 41 // called on the thread that this class was created on.
40 static ArcServiceManager* Get(); 42 static ArcServiceManager* Get();
41 43
42 // Called when the main profile is initialized after user logs in. 44 // Called when the main profile is initialized after user logs in.
43 void OnPrimaryUserProfilePrepared(const AccountId& account_id); 45 void OnPrimaryUserProfilePrepared(
46 const AccountId& account_id,
47 std::unique_ptr<BooleanPrefMember> arc_enabled_pref);
44 48
45 // Called once the windowing system (ash) has been started. 49 // Called once the windowing system (ash) has been started.
46 void OnAshStarted(); 50 void OnAshStarted();
47 51
48 // Called to shut down all ARC services. 52 // Called to shut down all ARC services.
49 void Shutdown(); 53 void Shutdown();
50 54
51 scoped_refptr<base::TaskRunner> blocking_task_runner() const { 55 scoped_refptr<base::TaskRunner> blocking_task_runner() const {
52 return blocking_task_runner_; 56 return blocking_task_runner_;
53 } 57 }
(...skipping 17 matching lines...) Expand all
71 // True once the window manager service got added, barring adding any more 75 // True once the window manager service got added, barring adding any more
72 // of those since OnAshStarted() might be called multiple times. 76 // of those since OnAshStarted() might be called multiple times.
73 bool on_ash_started_called_ = false; 77 bool on_ash_started_called_ = false;
74 78
75 DISALLOW_COPY_AND_ASSIGN(ArcServiceManager); 79 DISALLOW_COPY_AND_ASSIGN(ArcServiceManager);
76 }; 80 };
77 81
78 } // namespace arc 82 } // namespace arc
79 83
80 #endif // COMPONENTS_ARC_ARC_SERVICE_MANAGER_H_ 84 #endif // COMPONENTS_ARC_ARC_SERVICE_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698