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 const scoped_refptr<LocalActivityResolver>& activity_resolver); | 44 const scoped_refptr<LocalActivityResolver>& activity_resolver); |
44 ~ArcIntentHelperBridge() override; | 45 ~ArcIntentHelperBridge() override; |
45 | 46 |
46 // InstanceHolder<mojom::IntentHelperInstance>::Observer | 47 // InstanceHolder<mojom::IntentHelperInstance>::Observer |
47 void OnInstanceReady() override; | 48 void OnInstanceReady() override; |
48 void OnInstanceClosed() override; | 49 void OnInstanceClosed() override; |
49 | 50 |
50 // arc::mojom::IntentHelperHost | 51 // arc::mojom::IntentHelperHost |
51 void OnIconInvalidated(const mojo::String& package_name) override; | 52 void OnIconInvalidated(const mojo::String& package_name) override; |
52 void OnIntentFiltersUpdated( | 53 void OnIntentFiltersUpdated( |
(...skipping 10 matching lines...) Expand all Loading... |
63 static bool IsIntentHelperPackage(const std::string& package_name); | 64 static bool IsIntentHelperPackage(const std::string& package_name); |
64 | 65 |
65 // 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 |
66 // a new array. | 67 // a new array. |
67 static mojo::Array<mojom::UrlHandlerInfoPtr> FilterOutIntentHelper( | 68 static mojo::Array<mojom::UrlHandlerInfoPtr> FilterOutIntentHelper( |
68 mojo::Array<mojom::UrlHandlerInfoPtr> handlers); | 69 mojo::Array<mojom::UrlHandlerInfoPtr> handlers); |
69 | 70 |
70 private: | 71 private: |
71 mojo::Binding<mojom::IntentHelperHost> binding_; | 72 mojo::Binding<mojom::IntentHelperHost> binding_; |
72 scoped_refptr<ActivityIconLoader> icon_loader_; | 73 scoped_refptr<ActivityIconLoader> icon_loader_; |
| 74 std::unique_ptr<SetWallpaperDelegate> set_wallpaper_delegate_; |
73 scoped_refptr<LocalActivityResolver> activity_resolver_; | 75 scoped_refptr<LocalActivityResolver> activity_resolver_; |
74 | 76 |
75 base::ThreadChecker thread_checker_; | 77 base::ThreadChecker thread_checker_; |
76 | 78 |
77 DISALLOW_COPY_AND_ASSIGN(ArcIntentHelperBridge); | 79 DISALLOW_COPY_AND_ASSIGN(ArcIntentHelperBridge); |
78 }; | 80 }; |
79 | 81 |
80 } // namespace arc | 82 } // namespace arc |
81 | 83 |
82 #endif // COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_ | 84 #endif // COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_ |
OLD | NEW |