blob: 002403b3415ca18851b3303389787ec7fbafc713 (
plain)
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
|
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_PUBLIC_BROWSER_SMS_FETCHER_H_
#define CONTENT_PUBLIC_BROWSER_SMS_FETCHER_H_
#include <string>
#include "base/observer_list_types.h"
#include "content/common/content_export.h"
namespace url {
class Origin;
}
namespace content {
class BrowserContext;
class RenderFrameHost;
// SmsFetcher coordinates between the provisioning of SMSes coming from the
// local device or remote devices to multiple origins.
// There is one SmsFetcher per profile.
class SmsFetcher {
public:
SmsFetcher() = default;
virtual ~SmsFetcher() = default;
// Retrieval for devices that exclusively listen for SMSes coming from other
// telephony devices. (eg. desktop)
CONTENT_EXPORT static SmsFetcher* Get(BrowserContext* context);
class Subscriber : public base::CheckedObserver {
public:
// Receive a |one_time_code| from subscribed origin. The |one_time_code|
// is parsed from |sms| as an alphanumeric value which the origin uses
// to verify the ownership of the phone number.
virtual void OnReceive(const std::string& one_time_code) = 0;
};
// Subscribes to incoming SMSes from SmsProvider for subscribers that do not
// have telephony capabilities and exclusively listen for SMSes received
// on other devices.
virtual void Subscribe(const url::Origin& origin, Subscriber* subscriber) = 0;
// Subscribes to incoming SMSes from SmsProvider for telephony
// devices that can receive SMSes locally and can show a permission prompt.
virtual void Subscribe(const url::Origin& origin,
Subscriber* subscriber,
RenderFrameHost* render_frame_host) = 0;
virtual void Unsubscribe(const url::Origin& origin,
Subscriber* subscriber) = 0;
virtual bool HasSubscribers() = 0;
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_SMS_FETCHER_H_
|