blob: 388a12ceae7a9d81892523040c074800fae97d53 (
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
|
// 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_BROWSER_SMS_SMS_QUEUE_H_
#define CONTENT_BROWSER_SMS_SMS_QUEUE_H_
#include <map>
#include "base/observer_list.h"
#include "content/common/content_export.h"
#include "content/public/browser/sms_fetcher.h"
#include "url/origin.h"
namespace content {
// SmsQueue manages the queue of pending requests for each origin.
class CONTENT_EXPORT SmsQueue {
public:
SmsQueue();
~SmsQueue();
using FailureType = SmsFetcher::FailureType;
using Subscriber = SmsFetcher::Subscriber;
void Push(const url::Origin& origin, Subscriber* subscriber);
Subscriber* Pop(const url::Origin& origin);
void Remove(const url::Origin& origin, Subscriber* subscriber);
bool HasSubscribers();
bool HasSubscriber(const url::Origin& origin, const Subscriber* subscriber);
// Pops and notifies the first subscriber of an origin iff there's one origin
// in the |subscribers_| map. Returns true if the failure is handled.
bool NotifyFailure(FailureType failure_type);
private:
std::map<url::Origin, base::ObserverList<Subscriber>> subscribers_;
DISALLOW_COPY_AND_ASSIGN(SmsQueue);
};
} // namespace content
#endif // CONTENT_BROWSER_SMS_SMS_QUEUE_H_
|