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

Unified Diff: components/arc/intent_helper/arc_intent_helper_bridge.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: components/arc/intent_helper/arc_intent_helper_bridge.h
diff --git a/components/arc/intent_helper/arc_intent_helper_bridge.h b/components/arc/intent_helper/arc_intent_helper_bridge.h
index a48e90e85da7e0fc0bb31625371b233dc6c33136..3fdc383b4ce34ec1be01c558b8c5305999c2ec7d 100644
--- a/components/arc/intent_helper/arc_intent_helper_bridge.h
+++ b/components/arc/intent_helper/arc_intent_helper_bridge.h
@@ -40,7 +40,7 @@ class ArcIntentHelperBridge
ArcIntentHelperBridge(
ArcBridgeService* bridge_service,
const scoped_refptr<ActivityIconLoader>& icon_loader,
- std::unique_ptr<SetWallpaperDelegate> set_wallpaper_delegate,
+ SetWallpaperDelegate* set_wallpaper_delegate,
const scoped_refptr<LocalActivityResolver>& activity_resolver);
~ArcIntentHelperBridge() override;
@@ -71,7 +71,7 @@ class ArcIntentHelperBridge
private:
mojo::Binding<mojom::IntentHelperHost> binding_;
scoped_refptr<ActivityIconLoader> icon_loader_;
- std::unique_ptr<SetWallpaperDelegate> set_wallpaper_delegate_;
+ SetWallpaperDelegate* set_wallpaper_delegate_;
xiyuan 2016/08/23 20:43:47 nit: SetWallpaperDelegate* const set_wallpaper_del
Muyuan 2016/08/23 21:20:38 Done.
scoped_refptr<LocalActivityResolver> activity_resolver_;
base::ThreadChecker thread_checker_;

Powered by Google App Engine
This is Rietveld 408576698