Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3828)

Unified Diff: chrome/browser/chromeos/arc/notification/arc_notification_item.cc

Issue 1477733002: Add ArcNotificationManager for new ARC notification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a TODO comment about ArcServiceManager Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/arc/notification/arc_notification_item.cc
diff --git a/chrome/browser/chromeos/arc/notification/arc_notification_item.cc b/chrome/browser/chromeos/arc/notification/arc_notification_item.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a94e2a0134fdfe0dcf12b85ca7723fcc76be9207
--- /dev/null
+++ b/chrome/browser/chromeos/arc/notification/arc_notification_item.cc
@@ -0,0 +1,141 @@
+// Copyright 2015 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.
+
+#include "chrome/browser/chromeos/arc/notification/arc_notification_item.h"
+
+#include "base/strings/string16.h"
+#include "base/strings/utf_string_conversions.h"
+#include "ui/gfx/image/image.h"
+#include "ui/message_center/notification.h"
+#include "ui/message_center/notification_types.h"
+#include "ui/message_center/notifier_settings.h"
+
+#if defined(USE_ASH)
+#include "chrome/browser/ui/ash/multi_user/multi_user_util.h"
+#include "components/signin/core/account_id/account_id.h"
+#endif
+
+namespace {
+
+// static
+static const char* kNotificationIdPrefix = "ARC_NOTIFICATION_";
+
+class ArcNotificationDelegate : public message_center::NotificationDelegate {
+ public:
+ explicit ArcNotificationDelegate(
+ base::WeakPtr<chromeos::ArcNotificationItem> item)
+ : item_(item) {}
+
+ void Close(bool by_user) override {
+ if (item_)
+ item_->Close(by_user);
+ }
+
+ // Indicates all notifications have a click handler. This changes the mouse
+ // cursor on hover.
+ // TODO(yoshiki): Return the corerct value according to the content intent
hidehiko 2015/12/11 05:18:00 nit: s/corerct/correct/
yoshiki 2015/12/14 15:19:29 Done.
+ // and the flags.
+ bool HasClickedListener() override { return true; }
+
+ void Click() override {
+ if (item_)
+ item_->Click();
+ }
+
+ private:
+ // The destractor is private since this class is ref-counted.
+ ~ArcNotificationDelegate() override {}
+
+ base::WeakPtr<chromeos::ArcNotificationItem> item_;
+};
+
+} // anonymous namespace
+
+namespace chromeos {
+
+ArcNotificationItem::ArcNotificationItem(
+ ArcNotificationManager* manager,
+ message_center::MessageCenter* message_center,
+ const arc::ArcNotificationData& data,
+ Profile* profile)
+ : manager_(manager),
+ message_center_(message_center),
+ profile_(profile),
+ weak_ptr_factory_(this) {
+ // This must be initialized after ArcBridgeService.
+ notification_key_ = data.key;
hidehiko 2015/12/11 05:18:00 Please move them to the initializer list.
yoshiki 2015/12/14 15:19:29 Done.
+ notification_id_ = kNotificationIdPrefix + notification_key_;
+
+ UpdateWithArcNotificationData(data);
hidehiko 2015/12/11 05:18:00 IMHO, you can defer the responsibility to call thi
yoshiki 2015/12/14 15:19:29 Done.
+}
+
+void ArcNotificationItem::UpdateWithArcNotificationData(
+ const arc::ArcNotificationData& data) {
+ DCHECK(notification_key_ == data.key);
+
+ message_center::RichNotificationData rich_data;
+ message_center::NotificationType type =
hidehiko 2015/12/11 05:18:00 I prefer move this to default:, as you set it in t
yoshiki 2015/12/14 15:19:29 I moved them into the switch block, since I remove
+ message_center::NOTIFICATION_TYPE_SIMPLE;
+ switch (data.type) {
+ case arc::ARC_NOTIFICATION_TYPE_PROGRESS:
+ type = message_center::NOTIFICATION_TYPE_PROGRESS;
+ rich_data.timestamp = base::Time::UnixEpoch() +
+ base::TimeDelta::FromMilliseconds(data.time);
+ rich_data.progress = std::floor(
+ static_cast<float>(data.progress_current) / data.progress_max * 100 +
+ 0.5); // round off
hidehiko 2015/12/11 05:18:00 nit: std::round is your friend. BTW, the values,
yoshiki 2015/12/14 15:19:29 Thank you for letting me know round(), done.
+ break;
+ default:
+ // TODO(yoshiki): Implement other types.
+ break;
+ }
+
+ message_center::NotifierId notifier_id(
+ message_center::NotifierId::SYSTEM_COMPONENT, notification_id_);
+#if defined(USE_ASH)
+ notifier_id.profile_id =
+ multi_user_util::GetAccountIdFromProfile(profile_).GetUserEmail();
+#endif
+
+ DCHECK(!data.title.is_null());
+ DCHECK(!data.message.is_null());
+ notification_.reset(new message_center::Notification(
+ type, notification_id_, base::UTF8ToUTF16(data.title.get()),
+ base::UTF8ToUTF16(data.message.get()),
+ gfx::Image(), // Will be overriden by decODED IMAGE.
+ base::UTF8ToUTF16("arc"), // display source
+ GURL(), // origin url
+ notifier_id, rich_data,
+ new ArcNotificationDelegate(weak_ptr_factory_.GetWeakPtr())));
+
+ DCHECK(!data.icon_data.is_null());
+ DCHECK(data.icon_data.size() > 0);
+ std::string icon_data_str(data.icon_data.storage().begin(),
+ data.icon_data.storage().end()); // copy
+ ImageDecoder::Start(this, icon_data_str); // copy in the method.
+}
+
+ArcNotificationItem::~ArcNotificationItem() {}
+
+void ArcNotificationItem::OnClosedFromAndroid() {
+ message_center_->RemoveNotification(notification_id_, true /* by_user */);
+}
+
+void ArcNotificationItem::Close(bool by_user) {
+ manager_->SendNotificationRemovedFromChrome(notification_key_);
+}
+
+void ArcNotificationItem::Click() {
+ manager_->SendNotificationClickedOnChrome(notification_key_);
+}
+
+void ArcNotificationItem::OnImageDecoded(const SkBitmap& bitmap) {
+ gfx::Image image = gfx::Image::CreateFrom1xBitmap(bitmap);
+ notification_->set_icon(image);
+
+ message_center_->AddNotification(make_scoped_ptr(
hidehiko 2015/12/11 05:18:00 Looks race? - UpdateWithArcNotificationData(...).
yoshiki 2015/12/14 15:19:29 It shouldn't be occurred. Because this instance is
+ new message_center::Notification(*notification_))); // copy
hidehiko 2015/12/11 05:18:00 You do not need a copy here, instead you can move
yoshiki 2015/12/14 15:19:29 I thought I wanted to have the data stored to skip
+}
+
+} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698