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
ash / components / arc / test / fake_notifications_instance.cc [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.
#include "ash/components/arc/test/fake_notifications_instance.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
namespace arc {
FakeNotificationsInstance::FakeNotificationsInstance() = default;
FakeNotificationsInstance::~FakeNotificationsInstance() = default;
void FakeNotificationsInstance::SendNotificationEventToAndroid(
const std::string& key,
mojom::ArcNotificationEvent event) {
events_.emplace_back(key, event);
}
void FakeNotificationsInstance::SendNotificationButtonClickToAndroid(
const std::string& key,
uint32_t button_index,
const std::string& input) {}
void FakeNotificationsInstance::CreateNotificationWindow(
const std::string& key) {}
void FakeNotificationsInstance::CloseNotificationWindow(
const std::string& key) {}
void FakeNotificationsInstance::OpenNotificationSettings(
const std::string& key) {}
void FakeNotificationsInstance::PopUpAppNotificationSettings(
const std::string& key) {}
void FakeNotificationsInstance::OpenNotificationSnoozeSettings(
const std::string& key) {}
void FakeNotificationsInstance::SetDoNotDisturbStatusOnAndroid(
mojom::ArcDoNotDisturbStatusPtr status) {
latest_do_not_disturb_status_ = std::move(status);
}
void FakeNotificationsInstance::CancelPress(const std::string& key) {}
void FakeNotificationsInstance::Init(
mojo::PendingRemote<mojom::NotificationsHost> host_remote,
InitCallback callback) {
std::move(callback).Run();
}
const std::vector<std::pair<std::string, mojom::ArcNotificationEvent>>&
FakeNotificationsInstance::events() const {
return events_;
}
const mojom::ArcDoNotDisturbStatusPtr&
FakeNotificationsInstance::latest_do_not_disturb_status() const {
return latest_do_not_disturb_status_;
}
void FakeNotificationsInstance::PerformDeferredUserAction(uint32_t action_id) {}
void FakeNotificationsInstance::CancelDeferredUserAction(uint32_t action_id) {}
void FakeNotificationsInstance::SetLockScreenSettingOnAndroid(
mojom::ArcLockScreenNotificationSettingPtr setting) {}
void FakeNotificationsInstance::SetNotificationConfiguration(
mojom::NotificationConfigurationPtr configuration) {}
void FakeNotificationsInstance::OnMessageCenterVisibilityChanged(
mojom::MessageCenterVisibility visibility) {}
} // namespace arc