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

Side by Side Diff: components/webusb/webusb_detector.cc

Issue 1289423002: Add webusb notification UI code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated code so that Chrome browser process owns WebUsbBrowserClient and WebUsbDetector objects Created 5 years, 3 months 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 unified diff | Download patch
OLDNEW
(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 "components/webusb/webusb_detector.h"
6
7 #include "base/memory/scoped_ptr.h"
8 #include "components/webusb/webusb_browser_client.h"
9 #include "device/core/device_client.h"
10 #include "device/usb/usb_device.h"
11 #include "device/usb/usb_ids.h"
12
13 namespace webusb {
14
15 WebUsbDetector::WebUsbDetector() : observer_(this) {
16 Initialize();
17 }
18
19 WebUsbDetector::~WebUsbDetector() {}
20
21 void WebUsbDetector::Initialize() {
22 if (!webusb::WebUsbBrowserClient::Get()) {
23 return;
24 }
25
26 device::UsbService* usb_service =
27 device::DeviceClient::Get()->GetUsbService();
28 if (!usb_service)
29 return;
30
31 observer_.Add(usb_service);
32 }
33
34 void WebUsbDetector::OnDeviceAdded(scoped_refptr<device::UsbDevice> device) {
35 const base::string16& product_name = device->product_string();
36 if (product_name.empty()) {
37 return;
38 }
39
40 const GURL& landing_page = device->webusb_landing_page();
41 if (!landing_page.is_valid()) {
42 return;
43 }
44
45 std::string notification_id = device->guid();
46
47 webusb::WebUsbBrowserClient::Get()->OnDeviceAdded(product_name, landing_page,
48 notification_id);
49 }
50
51 void WebUsbDetector::OnDeviceRemoved(scoped_refptr<device::UsbDevice> device) {
52 std::string notification_id = device->guid();
53 webusb::WebUsbBrowserClient::Get()->OnDeviceRemoved(notification_id);
54 }
55
56 } // namespace webusb
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698