blob: 0d38bedec0a70ba37673aec4fe0d72792bb40c88 [file] [log] [blame]
// Copyright 2017 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 ASH_SYSTEM_MESSAGE_CENTER_ARC_ARC_NOTIFICATION_DELEGATE_H_
#define ASH_SYSTEM_MESSAGE_CENTER_ARC_ARC_NOTIFICATION_DELEGATE_H_
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "ui/message_center/public/cpp/notification_delegate.h"
namespace message_center {
class MessageView;
class Notification;
} // namespace message_center
namespace ash {
class ArcNotificationItem;
// Implementation of NotificationDelegate for ARC notifications.
class ArcNotificationDelegate : public message_center::NotificationDelegate {
public:
explicit ArcNotificationDelegate(base::WeakPtr<ArcNotificationItem> item);
// Creates a view for the given notification (which must have been the one
// generated by |item_|).
std::unique_ptr<message_center::MessageView> CreateCustomMessageView(
const message_center::Notification& notification);
// message_center::NotificationDelegate overrides:
void Close(bool by_user) override;
void Click(const base::Optional<int>& button_index,
const base::Optional<base::string16>& reply) override;
void SettingsClick() override;
private:
// The destructor is private since this class is ref-counted.
~ArcNotificationDelegate() override;
// We use weak ptr to detect potential use-after-free. The lives of objects
// around ARC notification is somewhat complex so we want to use it until
// it gets stable.
base::WeakPtr<ArcNotificationItem> item_;
DISALLOW_COPY_AND_ASSIGN(ArcNotificationDelegate);
};
} // namespace ash
#endif // ASH_SYSTEM_MESSAGE_CENTER_ARC_ARC_NOTIFICATION_DELEGATE_H_