| Index: chrome/browser/chrome_browser_main.cc
|
| diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
|
| index a0600754d5bbddbcdfdc38ae6995e5e3e9248ee4..adc1045e14c3a1dbb54927da2a17b6d4026c00a1 100644
|
| --- a/chrome/browser/chrome_browser_main.cc
|
| +++ b/chrome/browser/chrome_browser_main.cc
|
| @@ -1542,14 +1542,8 @@ void ChromeBrowserMainParts::PostBrowserStart() {
|
| #endif // defined(ENABLE_WEBRTC)
|
|
|
| #if !defined(OS_ANDROID)
|
| - // WebUSB is an experimental web API. The sites these notifications will link
|
| - // to will only work if the experiment is enabled and WebUSB feature is
|
| - // enabled.
|
| - if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kEnableExperimentalWebPlatformFeatures) &&
|
| - base::FeatureList::IsEnabled(features::kWebUsb)) {
|
| + if (base::FeatureList::IsEnabled(features::kWebUsb))
|
| web_usb_detector_.reset(new WebUsbDetector());
|
| - }
|
| #endif
|
|
|
| // At this point, StartupBrowserCreator::Start has run creating initial
|
|
|