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

Unified Diff: chrome/browser/chromeos/arc/arc_service_launcher.h

Issue 2264743002: cheets: implement cros side of WallpaperManagerService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cheets: implement cros side of WallpaperManagerService. Created 4 years, 4 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: chrome/browser/chromeos/arc/arc_service_launcher.h
diff --git a/chrome/browser/chromeos/arc/arc_service_launcher.h b/chrome/browser/chromeos/arc/arc_service_launcher.h
index 7d912bbb5dc1bfcd7f89bd5841e078a36949af1a..abc5b3966b9b42812321ee3f99c5cb279561cf92 100644
--- a/chrome/browser/chromeos/arc/arc_service_launcher.h
+++ b/chrome/browser/chromeos/arc/arc_service_launcher.h
@@ -12,6 +12,8 @@
namespace arc {
+class ArcWallpaperHandler;
+
// Detects ARC availability and launches ARC bridge service.
class ArcServiceLauncher {
public:
@@ -23,6 +25,7 @@ class ArcServiceLauncher {
private:
std::unique_ptr<ArcServiceManager> arc_service_manager_;
+ std::shared_ptr<ArcWallpaperHandler> arc_wallpaper_handler_;
xiyuan 2016/08/22 22:49:41 Do we really need a shared_ptr? Can some class own
Muyuan 2016/08/22 23:48:19 OK.. So I wonder if ArcServiceManager should own i
xiyuan 2016/08/23 00:41:04 Could it still be owned by ArcIntentHelperBridge a
Shuhei Takahashi 2016/08/23 09:34:21 ArcWallpaperHandler is accessed from ArcIntentHelp
Muyuan 2016/08/23 19:45:48 ArcWallpaperBridge
Muyuan 2016/08/23 19:45:48 Done.
DISALLOW_COPY_AND_ASSIGN(ArcServiceLauncher);
};

Powered by Google App Engine
This is Rietveld 408576698