mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
64 lines
2.1 KiB
C++
64 lines
2.1 KiB
C++
// Copyright 2023 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef THIRD_PARTY_NEARBY_FASTPAIR_UI_FAST_PAIR_FAST_PAIR_NOTIFICATION_CONTROLLER_H_
|
|
#define THIRD_PARTY_NEARBY_FASTPAIR_UI_FAST_PAIR_FAST_PAIR_NOTIFICATION_CONTROLLER_H_
|
|
|
|
#include "absl/functional/any_invocable.h"
|
|
#include "absl/strings/string_view.h"
|
|
#include "fastpair/repository/device_metadata.h"
|
|
#include "internal/base/observer_list.h"
|
|
|
|
namespace nearby {
|
|
namespace fastpair {
|
|
using RepeatingClosure = absl::AnyInvocable<void()>;
|
|
enum class FastPairNotificationDismissReason {
|
|
kDismissedByUser,
|
|
kDismissedByOs,
|
|
kDismissedByTimeout,
|
|
};
|
|
|
|
// This controller creates and manages messages for each FastPair corresponding
|
|
// notification event.
|
|
class FastPairNotificationController {
|
|
public:
|
|
class Observer {
|
|
public:
|
|
virtual ~Observer() = default;
|
|
virtual void OnUpdateDevice(DeviceMetadata& device) = 0;
|
|
};
|
|
|
|
FastPairNotificationController() = default;
|
|
~FastPairNotificationController() = default;
|
|
FastPairNotificationController(const FastPairNotificationController&) =
|
|
delete;
|
|
FastPairNotificationController& operator=(
|
|
const FastPairNotificationController&) = delete;
|
|
|
|
// Observer process
|
|
void AddObserver(Observer* observer);
|
|
void RemoveObserver(Observer* observer);
|
|
void NotifyShowDiscovery(DeviceMetadata& device);
|
|
|
|
// Creates and displays corresponding notification.
|
|
void ShowGuestDiscoveryNotification(DeviceMetadata& device_metadata);
|
|
|
|
private:
|
|
ObserverList<Observer> observers_;
|
|
};
|
|
} // namespace fastpair
|
|
} // namespace nearby
|
|
|
|
#endif // THIRD_PARTY_NEARBY_FASTPAIR_UI_FAST_PAIR_FAST_PAIR_NOTIFICATION_CONTROLLER_H_
|