OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_ | 5 #ifndef COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_ |
6 #define COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_ | 6 #define COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... | |
33 // Receives intents from ARC. | 33 // Receives intents from ARC. |
34 class ArcIntentHelperBridge | 34 class ArcIntentHelperBridge |
35 : public ArcService, | 35 : public ArcService, |
36 public InstanceHolder<mojom::IntentHelperInstance>::Observer, | 36 public InstanceHolder<mojom::IntentHelperInstance>::Observer, |
37 public mojom::IntentHelperHost, | 37 public mojom::IntentHelperHost, |
38 public ash::LinkHandlerModelFactory { | 38 public ash::LinkHandlerModelFactory { |
39 public: | 39 public: |
40 ArcIntentHelperBridge( | 40 ArcIntentHelperBridge( |
41 ArcBridgeService* bridge_service, | 41 ArcBridgeService* bridge_service, |
42 const scoped_refptr<ActivityIconLoader>& icon_loader, | 42 const scoped_refptr<ActivityIconLoader>& icon_loader, |
43 std::unique_ptr<SetWallpaperDelegate> set_wallpaper_delegate, | 43 SetWallpaperDelegate* set_wallpaper_delegate, |
44 const scoped_refptr<LocalActivityResolver>& activity_resolver); | 44 const scoped_refptr<LocalActivityResolver>& activity_resolver); |
45 ~ArcIntentHelperBridge() override; | 45 ~ArcIntentHelperBridge() override; |
46 | 46 |
47 // InstanceHolder<mojom::IntentHelperInstance>::Observer | 47 // InstanceHolder<mojom::IntentHelperInstance>::Observer |
48 void OnInstanceReady() override; | 48 void OnInstanceReady() override; |
49 void OnInstanceClosed() override; | 49 void OnInstanceClosed() override; |
50 | 50 |
51 // arc::mojom::IntentHelperHost | 51 // arc::mojom::IntentHelperHost |
52 void OnIconInvalidated(const mojo::String& package_name) override; | 52 void OnIconInvalidated(const mojo::String& package_name) override; |
53 void OnIntentFiltersUpdated( | 53 void OnIntentFiltersUpdated( |
(...skipping 10 matching lines...) Expand all Loading... | |
64 static bool IsIntentHelperPackage(const std::string& package_name); | 64 static bool IsIntentHelperPackage(const std::string& package_name); |
65 | 65 |
66 // Filters out handlers that belong to the intent_helper apk and returns | 66 // Filters out handlers that belong to the intent_helper apk and returns |
67 // a new array. | 67 // a new array. |
68 static mojo::Array<mojom::UrlHandlerInfoPtr> FilterOutIntentHelper( | 68 static mojo::Array<mojom::UrlHandlerInfoPtr> FilterOutIntentHelper( |
69 mojo::Array<mojom::UrlHandlerInfoPtr> handlers); | 69 mojo::Array<mojom::UrlHandlerInfoPtr> handlers); |
70 | 70 |
71 private: | 71 private: |
72 mojo::Binding<mojom::IntentHelperHost> binding_; | 72 mojo::Binding<mojom::IntentHelperHost> binding_; |
73 scoped_refptr<ActivityIconLoader> icon_loader_; | 73 scoped_refptr<ActivityIconLoader> icon_loader_; |
74 std::unique_ptr<SetWallpaperDelegate> set_wallpaper_delegate_; | 74 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.
| |
75 scoped_refptr<LocalActivityResolver> activity_resolver_; | 75 scoped_refptr<LocalActivityResolver> activity_resolver_; |
76 | 76 |
77 base::ThreadChecker thread_checker_; | 77 base::ThreadChecker thread_checker_; |
78 | 78 |
79 DISALLOW_COPY_AND_ASSIGN(ArcIntentHelperBridge); | 79 DISALLOW_COPY_AND_ASSIGN(ArcIntentHelperBridge); |
80 }; | 80 }; |
81 | 81 |
82 } // namespace arc | 82 } // namespace arc |
83 | 83 |
84 #endif // COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_ | 84 #endif // COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_ |
OLD | NEW |