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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 void SetWallpaperDeprecated(mojo::Array<uint8_t> jpeg_data) override; | 66 void SetWallpaperDeprecated(mojo::Array<uint8_t> jpeg_data) override; |
67 | 67 |
68 // ash::LinkHandlerModelFactory | 68 // ash::LinkHandlerModelFactory |
69 std::unique_ptr<ash::LinkHandlerModel> CreateModel(const GURL& url) override; | 69 std::unique_ptr<ash::LinkHandlerModel> CreateModel(const GURL& url) override; |
70 | 70 |
71 // Returns false if |package_name| is for the intent_helper apk. | 71 // Returns false if |package_name| is for the intent_helper apk. |
72 static bool IsIntentHelperPackage(const std::string& package_name); | 72 static bool IsIntentHelperPackage(const std::string& package_name); |
73 | 73 |
74 // Filters out handlers that belong to the intent_helper apk and returns | 74 // Filters out handlers that belong to the intent_helper apk and returns |
75 // a new array. | 75 // a new array. |
76 static mojo::Array<mojom::UrlHandlerInfoPtr> FilterOutIntentHelper( | 76 static mojo::Array<mojom::IntentHandlerInfoPtr> FilterOutIntentHelper( |
77 mojo::Array<mojom::UrlHandlerInfoPtr> handlers); | 77 mojo::Array<mojom::IntentHandlerInfoPtr> handlers); |
78 | 78 |
79 // Gets the mojo instance if it's available. On failure, returns nullptr and | 79 // Gets the mojo instance if it's available. On failure, returns nullptr and |
80 // updates |out_error_code| if it's not nullptr. | 80 // updates |out_error_code| if it's not nullptr. |
81 static mojom::IntentHelperInstance* GetIntentHelperInstanceWithErrorCode( | 81 static mojom::IntentHelperInstance* GetIntentHelperInstanceWithErrorCode( |
82 int min_instance_version, | 82 int min_instance_version, |
83 GetResult* out_error_code); | 83 GetResult* out_error_code); |
84 | 84 |
85 // Does the same as above without asking for the error code. | 85 // Does the same as above without asking for the error code. |
86 static mojom::IntentHelperInstance* GetIntentHelperInstance( | 86 static mojom::IntentHelperInstance* GetIntentHelperInstance( |
87 int min_instance_version); | 87 int min_instance_version); |
88 | 88 |
89 private: | 89 private: |
90 mojo::Binding<mojom::IntentHelperHost> binding_; | 90 mojo::Binding<mojom::IntentHelperHost> binding_; |
91 scoped_refptr<ActivityIconLoader> icon_loader_; | 91 scoped_refptr<ActivityIconLoader> icon_loader_; |
92 scoped_refptr<LocalActivityResolver> activity_resolver_; | 92 scoped_refptr<LocalActivityResolver> activity_resolver_; |
93 | 93 |
94 base::ThreadChecker thread_checker_; | 94 base::ThreadChecker thread_checker_; |
95 | 95 |
96 DISALLOW_COPY_AND_ASSIGN(ArcIntentHelperBridge); | 96 DISALLOW_COPY_AND_ASSIGN(ArcIntentHelperBridge); |
97 }; | 97 }; |
98 | 98 |
99 } // namespace arc | 99 } // namespace arc |
100 | 100 |
101 #endif // COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_ | 101 #endif // COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_ |
OLD | NEW |