1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
ash / components / arc / intent_helper / arc_intent_helper_bridge.h [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_
#define ASH_COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_
#include <map>
#include <memory>
#include <set>
#include <string>
#include <vector>
#include "ash/components/arc/intent_helper/arc_icon_cache_delegate.h"
#include "ash/components/arc/intent_helper/arc_intent_helper_observer.h"
#include "ash/components/arc/mojom/intent_helper.mojom.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/threading/thread_checker.h"
#include "components/keyed_service/core/keyed_service.h"
#include "url/gurl.h"
class BrowserContextKeyedServiceFactory;
namespace content {
class BrowserContext;
} // namespace content
namespace arc {
class AdaptiveIconDelegate;
class ArcBridgeService;
class ControlCameraAppDelegate;
class IntentFilter;
class OpenUrlDelegate;
// Receives intents from ARC.
class ArcIntentHelperBridge : public KeyedService,
public mojom::IntentHelperHost,
public ArcIconCacheDelegate {
public:
class Delegate {
public:
virtual ~Delegate() = default;
// Resets ARC; this wipes all user data, stops ARC, then
// re-enables ARC.
virtual void ResetArc() = 0;
// Handles Android settings to sync GeoLocation information.
virtual void HandleUpdateAndroidSettings(mojom::AndroidSetting setting,
bool is_enabled) = 0;
};
// Returns singleton instance for the given BrowserContext,
// or nullptr if the browser |context| is not allowed to use ARC.
static ArcIntentHelperBridge* GetForBrowserContext(
content::BrowserContext* context);
static ArcIntentHelperBridge* GetForBrowserContextForTesting(
content::BrowserContext* context);
static void ShutDownForTesting(content::BrowserContext* context);
// Returns factory for the ArcIntentHelperBridge.
static BrowserContextKeyedServiceFactory* GetFactory();
// Appends '.' + |to_append| to the intent helper package name.
static std::string AppendStringToIntentHelperPackageName(
const std::string& to_append);
static void SetOpenUrlDelegate(OpenUrlDelegate* delegate);
static void SetControlCameraAppDelegate(ControlCameraAppDelegate* delegate);
// Sets the Delegate instance.
void SetDelegate(std::unique_ptr<Delegate> delegate);
ArcIntentHelperBridge(content::BrowserContext* context,
ArcBridgeService* bridge_service);
ArcIntentHelperBridge(const ArcIntentHelperBridge&) = delete;
ArcIntentHelperBridge& operator=(const ArcIntentHelperBridge&) = delete;
~ArcIntentHelperBridge() override;
// KeyedService:
void Shutdown() override;
// mojom::IntentHelperHost
void OnIconInvalidated(const std::string& package_name) override;
void OnIntentFiltersUpdated(
std::vector<IntentFilter> intent_filters) override;
void OnOpenDownloads() override;
void OnOpenUrl(const std::string& url) override;
void OnOpenCustomTab(const std::string& url,
int32_t task_id,
OnOpenCustomTabCallback callback) override;
void OnOpenChromePage(mojom::ChromePage page) override;
void FactoryResetArc() override;
void OpenWallpaperPicker() override;
void OpenVolumeControl() override;
void OnOpenWebApp(const std::string& url) override;
void LaunchCameraApp(uint32_t intent_id,
arc::mojom::CameraIntentMode mode,
bool should_handle_result,
bool should_down_scale,
bool is_secure,
int32_t task_id) override;
void OnIntentFiltersUpdatedForPackage(
const std::string& package_name,
std::vector<IntentFilter> intent_filters) override;
void CloseCameraApp() override;
void IsChromeAppEnabled(arc::mojom::ChromeApp app,
IsChromeAppEnabledCallback callback) override;
void OnSupportedLinksChanged(
std::vector<arc::mojom::SupportedLinksPackagePtr> added_packages,
std::vector<arc::mojom::SupportedLinksPackagePtr> removed_packages,
arc::mojom::SupportedLinkChangeSource source) override;
void OnDownloadAddedDeprecated(
const std::string& relative_path,
const std::string& owner_package_name) override;
void OnOpenAppWithIntent(const GURL& start_url,
arc::mojom::LaunchIntentPtr intent) override;
void OnOpenGlobalActions() override;
void OnCloseSystemDialogs() override;
// ArcIconCacheDelegete:
GetResult GetActivityIcons(const std::vector<ActivityName>& activities,
OnIconsReadyCallback callback) override;
void SetAdaptiveIconDelegate(AdaptiveIconDelegate* delegate);
void AddObserver(ArcIntentHelperObserver* observer);
void RemoveObserver(ArcIntentHelperObserver* observer);
bool HasObserver(ArcIntentHelperObserver* observer) const;
void HandleCameraResult(
uint32_t intent_id,
arc::mojom::CameraIntentAction action,
const std::vector<uint8_t>& data,
arc::mojom::IntentHelperInstance::HandleCameraResultCallback callback);
void SendNewCaptureBroadcast(bool is_video, std::string file_path);
void OnAndroidSettingChange(arc::mojom::AndroidSetting setting,
bool is_enabled) override;
// Filters out handlers that belong to the intent_helper apk and returns
// a new array.
static std::vector<mojom::IntentHandlerInfoPtr> FilterOutIntentHelper(
std::vector<mojom::IntentHandlerInfoPtr> handlers);
const std::vector<IntentFilter>& GetIntentFilterForPackage(
const std::string& package_name);
private:
THREAD_CHECKER(thread_checker_);
const raw_ptr<content::BrowserContext> context_;
const raw_ptr<ArcBridgeService>
arc_bridge_service_; // Owned by ArcServiceManager.
ActivityIconLoader icon_loader_;
// A map of each package name to the intent filters for that package.
// Used to determine if Chrome should handle a URL without handing off to
// Android.
std::map<std::string, std::vector<IntentFilter>> intent_filters_;
base::ObserverList<ArcIntentHelperObserver>::Unchecked observer_list_;
// Schemes that ARC is known to send via OnOpenUrl.
const std::set<std::string> allowed_arc_schemes_;
std::unique_ptr<Delegate> delegate_;
base::WeakPtrFactory<ArcIntentHelperBridge> weak_ptr_factory_{this};
};
} // namespace arc
#endif // ASH_COMPONENTS_ARC_INTENT_HELPER_ARC_INTENT_HELPER_BRIDGE_H_