Index: chrome/browser/chrome_webusb_browser_client.cc |
diff --git a/chrome/browser/chrome_webusb_browser_client.cc b/chrome/browser/chrome_webusb_browser_client.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f0f375f75ccb8349b38c26b7143bfbe17f5a7a5c |
--- /dev/null |
+++ b/chrome/browser/chrome_webusb_browser_client.cc |
@@ -0,0 +1,96 @@ |
+// 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/chrome_webusb_browser_client.h" |
+ |
+#include "base/strings/utf_string_conversions.h" |
+#include "chrome/browser/net/referrer.h" |
+#include "chrome/browser/profiles/profile_manager.h" |
+#include "chrome/browser/ui/browser.h" |
+#include "chrome/browser/ui/browser_finder.h" |
+#include "chrome/browser/ui/host_desktop.h" |
+#include "chrome/grit/generated_resources.h" |
+#include "ui/base/l10n/l10n_util.h" |
+#include "ui/base/page_transition_types.h" |
+#include "ui/base/window_open_disposition.h" |
+#include "ui/gfx/image/image.h" |
+#include "ui/message_center/message_center.h" |
+#include "ui/message_center/notification.h" |
+#include "ui/message_center/notification_delegate.h" |
+#include "url/gurl.h" |
+ |
+namespace { |
+ |
+const char kWebUsbDetectorNotificationID[] = "webusb.detector"; |
+ |
+void OpenURL(const GURL& url) { |
+ Browser* browser = chrome::FindBrowserWithProfile( |
+ ProfileManager::GetActiveUserProfile(), chrome::HOST_DESKTOP_TYPE_NATIVE); |
+ content::OpenURLParams params(url, content::Referrer(), NEW_FOREGROUND_TAB, |
+ ui::PAGE_TRANSITION_AUTO_TOPLEVEL, true); |
+ browser->OpenURL(params); |
+} |
+ |
+// Delegate for webusb notification |
+class WebUsbNotificationDelegate : public message_center::NotificationDelegate { |
+ public: |
+ WebUsbNotificationDelegate(const GURL& landing_page, |
+ const std::string& notification_id) |
+ : landing_page_(landing_page), notification_id_(notification_id) {} |
+ |
+ void Click() override { |
+ 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.
|
+ message_center::MessageCenter::Get()->RemoveNotification( |
+ notification_id_, false /* by_user */); |
+ } |
+ |
+ private: |
+ ~WebUsbNotificationDelegate() override = default; |
+ |
+ GURL landing_page_; |
+ std::string notification_id_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(WebUsbNotificationDelegate); |
+}; |
+ |
+} // namespace |
+ |
+ChromeWebUsbBrowserClient::ChromeWebUsbBrowserClient() {} |
+ |
+ChromeWebUsbBrowserClient::~ChromeWebUsbBrowserClient() {} |
+ |
+void ChromeWebUsbBrowserClient::OnDeviceAdded( |
+ const base::string16& product_name, |
+ const GURL& landing_page, |
+ const std::string& notification_id) { |
+ scoped_ptr<message_center::Notification> notification; |
+ |
+ message_center::RichNotificationData rich_notification_data; |
+ rich_notification_data.context_message = |
+ base::UTF8ToUTF16(landing_page.GetContent()); |
+ |
+ notification.reset(new message_center::Notification( |
+ message_center::NOTIFICATION_TYPE_SIMPLE, notification_id, |
+ l10n_util::GetStringFUTF16(IDS_WEBUSB_DEVICE_DETECTED_NOTIFICATION_TITLE, |
+ product_name), |
+ l10n_util::GetStringUTF16(IDS_WEBUSB_DEVICE_DETECTED_NOTIFICATION), |
+ // TODO(juncai): use generic USB device icon here. |
+ gfx::Image(), base::string16(), GURL(), |
+ message_center::NotifierId(message_center::NotifierId::SYSTEM_COMPONENT, |
+ kWebUsbDetectorNotificationID), |
+ rich_notification_data, |
+ new WebUsbNotificationDelegate(landing_page, notification_id))); |
+ |
+ notification->SetSystemPriority(); |
+ message_center::MessageCenter::Get()->AddNotification(notification.Pass()); |
+} |
+ |
+void ChromeWebUsbBrowserClient::OnDeviceRemoved( |
+ const std::string& notification_id) { |
+ message_center::MessageCenter* message_center = |
+ message_center::MessageCenter::Get(); |
+ if (message_center->FindVisibleNotificationById(notification_id)) { |
+ message_center->RemoveNotification(notification_id, false /* by_user */); |
+ } |
+} |