blob: 8d8346ab8a6189770744143399184ab2921d3a29 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
// Copyright 2016 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 UI_ARC_NOTIFICATION_ARC_NOTIFICATION_ITEM_H_
#define UI_ARC_NOTIFICATION_ARC_NOTIFICATION_ITEM_H_
#include <string>
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
#include "components/signin/core/account_id/account_id.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/arc/notification/arc_notification_manager.h"
#include "ui/message_center/message_center.h"
namespace arc {
// The class represents each ARC notification. One instance of this class
// corresponds to one ARC notification.
class ArcNotificationItem {
public:
ArcNotificationItem(ArcNotificationManager* manager,
message_center::MessageCenter* message_center,
const std::string& notification_key,
const AccountId& profile_id);
~ArcNotificationItem();
void UpdateWithArcNotificationData(const ArcNotificationData& data);
// Methods called from ArcNotificationManager:
void OnClosedFromAndroid(bool by_user);
// Methods called from ArcNotificationItemDelegate:
void Close(bool by_user);
void Click();
void ButtonClick(int button_index);
private:
void OnImageDecoded(const SkBitmap& bitmap);
ArcNotificationManager* const manager_;
message_center::MessageCenter* const message_center_;
const AccountId profile_id_;
const std::string notification_key_;
const std::string notification_id_;
// Stores on-going notification data during the image decoding.
// This field will be removed after removing async task of image decoding.
scoped_ptr<message_center::Notification> notification_;
// The flag to indicate that the removing is initiated by the manager and we
// don't need to notify a remove event to the manager.
// This is true only when:
// (1) the notification is being removed
// (2) the removing is initiated by manager
bool being_removed_by_manager_ = false;
// Stores the latest notification data which is newer than the on-going data.
// If the on-going data is either none or the latest, this is null.
// This field will be removed after removing async task of image decoding.
ArcNotificationDataPtr newer_data_;
base::ThreadChecker thread_checker_;
base::WeakPtrFactory<ArcNotificationItem> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(ArcNotificationItem);
};
} // namespace arc
#endif // UI_ARC_NOTIFICATION_ARC_NOTIFICATION_ITEM_H_
|