Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/chrome_webusb_browser_client.h" | |
| 6 | |
| 7 #include "base/strings/utf_string_conversions.h" | |
| 8 #include "chrome/browser/net/referrer.h" | |
| 9 #include "chrome/browser/profiles/profile_manager.h" | |
| 10 #include "chrome/browser/ui/browser.h" | |
| 11 #include "chrome/browser/ui/browser_finder.h" | |
| 12 #include "chrome/browser/ui/host_desktop.h" | |
| 13 #include "chrome/grit/generated_resources.h" | |
| 14 #include "ui/base/l10n/l10n_util.h" | |
| 15 #include "ui/base/page_transition_types.h" | |
| 16 #include "ui/base/window_open_disposition.h" | |
| 17 #include "ui/gfx/image/image.h" | |
| 18 #include "ui/message_center/message_center.h" | |
| 19 #include "ui/message_center/notification.h" | |
| 20 #include "ui/message_center/notification_delegate.h" | |
| 21 #include "url/gurl.h" | |
| 22 | |
| 23 namespace { | |
| 24 | |
| 25 const char kWebUsbDetectorNotificationID[] = "webusb.detector"; | |
| 26 | |
| 27 void OpenURL(const GURL& url) { | |
| 28 Browser* browser = chrome::FindBrowserWithProfile( | |
| 29 ProfileManager::GetActiveUserProfile(), chrome::HOST_DESKTOP_TYPE_NATIVE); | |
| 30 content::OpenURLParams params(url, content::Referrer(), NEW_FOREGROUND_TAB, | |
| 31 ui::PAGE_TRANSITION_AUTO_TOPLEVEL, true); | |
| 32 browser->OpenURL(params); | |
| 33 } | |
| 34 | |
| 35 // Delegate for webusb notification | |
| 36 class WebUsbNotificationDelegate : public message_center::NotificationDelegate { | |
| 37 public: | |
| 38 WebUsbNotificationDelegate(const GURL& landing_page, | |
| 39 const std::string& notification_id) | |
| 40 : landing_page_(landing_page), notification_id_(notification_id) {} | |
| 41 | |
| 42 void Click() override { | |
| 43 OpenURL(landing_page_); | |
|
stevenjb
2015/08/27 16:56:02
Does this require a security review, i.e. does lan
juncai
2015/08/27 19:58:39
Done.
| |
| 44 message_center::MessageCenter::Get()->RemoveNotification( | |
| 45 notification_id_, false /* by_user */); | |
| 46 } | |
| 47 | |
| 48 private: | |
| 49 ~WebUsbNotificationDelegate() override = default; | |
| 50 | |
| 51 GURL landing_page_; | |
| 52 std::string notification_id_; | |
| 53 | |
| 54 DISALLOW_COPY_AND_ASSIGN(WebUsbNotificationDelegate); | |
| 55 }; | |
| 56 | |
| 57 } // namespace | |
| 58 | |
| 59 ChromeWebUsbBrowserClient::ChromeWebUsbBrowserClient() {} | |
| 60 | |
| 61 ChromeWebUsbBrowserClient::~ChromeWebUsbBrowserClient() {} | |
| 62 | |
| 63 void ChromeWebUsbBrowserClient::OnDeviceAdded( | |
| 64 const base::string16& product_name, | |
| 65 const GURL& landing_page, | |
| 66 const std::string& notification_id) { | |
| 67 scoped_ptr<message_center::Notification> notification; | |
| 68 | |
| 69 message_center::RichNotificationData rich_notification_data; | |
| 70 rich_notification_data.context_message = | |
| 71 base::UTF8ToUTF16(landing_page.GetContent()); | |
| 72 | |
| 73 notification.reset(new message_center::Notification( | |
| 74 message_center::NOTIFICATION_TYPE_SIMPLE, notification_id, | |
| 75 l10n_util::GetStringFUTF16(IDS_WEBUSB_DEVICE_DETECTED_NOTIFICATION_TITLE, | |
| 76 product_name), | |
| 77 l10n_util::GetStringUTF16(IDS_WEBUSB_DEVICE_DETECTED_NOTIFICATION), | |
| 78 // TODO(juncai): use generic USB device icon here. | |
| 79 gfx::Image(), base::string16(), GURL(), | |
| 80 message_center::NotifierId(message_center::NotifierId::SYSTEM_COMPONENT, | |
| 81 kWebUsbDetectorNotificationID), | |
| 82 rich_notification_data, | |
| 83 new WebUsbNotificationDelegate(landing_page, notification_id))); | |
| 84 | |
| 85 notification->SetSystemPriority(); | |
| 86 message_center::MessageCenter::Get()->AddNotification(notification.Pass()); | |
| 87 } | |
| 88 | |
| 89 void ChromeWebUsbBrowserClient::OnDeviceRemoved( | |
| 90 const std::string& notification_id) { | |
| 91 message_center::MessageCenter* message_center = | |
| 92 message_center::MessageCenter::Get(); | |
| 93 if (message_center->FindVisibleNotificationById(notification_id)) { | |
| 94 message_center->RemoveNotification(notification_id, false /* by_user */); | |
| 95 } | |
| 96 } | |
| OLD | NEW |