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_; |