| Index: chrome/browser/usb/usb_chooser_bubble_delegate.cc
 | 
| diff --git a/chrome/browser/usb/usb_chooser_bubble_delegate.cc b/chrome/browser/usb/usb_chooser_bubble_delegate.cc
 | 
| index 61549c4f8dbe425a05dbc94acd064dd0a79d1260..026641d21148bcf86e2eac49a7a2fad0e14b1e2b 100644
 | 
| --- a/chrome/browser/usb/usb_chooser_bubble_delegate.cc
 | 
| +++ b/chrome/browser/usb/usb_chooser_bubble_delegate.cc
 | 
| @@ -13,6 +13,7 @@
 | 
|  #include "chrome/browser/profiles/profile.h"
 | 
|  #include "chrome/browser/usb/usb_chooser_context.h"
 | 
|  #include "chrome/browser/usb/usb_chooser_context_factory.h"
 | 
| +#include "chrome/common/url_constants.h"
 | 
|  #include "components/bubble/bubble_controller.h"
 | 
|  #include "content/public/browser/render_frame_host.h"
 | 
|  #include "content/public/browser/web_contents.h"
 | 
| @@ -161,6 +162,10 @@ void UsbChooserBubbleDelegate::OnDeviceAdded(
 | 
|    }
 | 
|  }
 | 
|  
 | 
| +GURL UsbChooserBubbleDelegate::GetHelpCenterUrl() const {
 | 
| +  return GURL(chrome::kChooserUsbOverviewURL);
 | 
| +}
 | 
| +
 | 
|  void UsbChooserBubbleDelegate::OnDeviceRemoved(
 | 
|      scoped_refptr<device::UsbDevice> device) {
 | 
|    for (auto it = devices_.begin(); it != devices_.end(); ++it) {
 | 
| 
 |