Chromium Code Reviews| Index: ui/arc/notification/arc_notification_item.h |
| diff --git a/ui/arc/notification/arc_notification_item.h b/ui/arc/notification/arc_notification_item.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..218e51f15c5bdd9e29ca834c7e825eb45bdcaa42 |
| --- /dev/null |
| +++ b/ui/arc/notification/arc_notification_item.h |
| @@ -0,0 +1,69 @@ |
| +// 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 "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 { |
| + |
| +class ArcNotificationItem { |
| + public: |
| + ArcNotificationItem(ArcNotificationManager* manager, |
| + message_center::MessageCenter* message_center, |
| + const ArcNotificationData& data, |
| + const AccountId& profile_id); |
| + ~ArcNotificationItem(); |
| + |
| + void UpdateWithArcNotificationData(const ArcNotificationData& data); |
| + |
| + // Methods called from ArcNotificationManager: |
| + void OnClosedFromAndroid(); |
| + |
| + // Methods called from ArcNotificationItemDelegate: |
| + void Close(bool by_user); |
| + void Click(); |
| + |
| + 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 property will be removed after removing async task of image decoding. |
|
hidehiko
2016/01/05 11:41:32
nit: s/property/field/
yoshiki
2016/01/06 08:50:17
Done.
|
| + 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 property will be removed after removing async task of image decoding. |
|
hidehiko
2016/01/05 11:41:32
ditto.
yoshiki
2016/01/06 08:50:17
Done.
|
| + ArcNotificationDataPtr newer_data_; |
| + |
| + base::WeakPtrFactory<ArcNotificationItem> weak_ptr_factory_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(ArcNotificationItem); |
| +}; |
| + |
| +} // namespace arc |
| + |
| +#endif // UI_ARC_NOTIFICATION_ARC_NOTIFICATION_ITEM_H_ |