| Index: chrome/browser/usb/usb_service_factory.cc
|
| diff --git a/chrome/browser/usb/usb_service_factory.cc b/chrome/browser/usb/usb_service_factory.cc
|
| index 823d582d7e0c75f618a946b01ea877056deb73bd..6b91c193e8516f52a2a87d4e8ce02acf6e96f2ab 100644
|
| --- a/chrome/browser/usb/usb_service_factory.cc
|
| +++ b/chrome/browser/usb/usb_service_factory.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/usb/usb_service_factory.h"
|
|
|
| #include "base/memory/singleton.h"
|
| +#include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/profiles/profile_dependency_manager.h"
|
| #include "chrome/browser/usb/usb_service.h"
|
|
|
| @@ -23,6 +24,6 @@ UsbServiceFactory::UsbServiceFactory() : ProfileKeyedServiceFactory(
|
| UsbServiceFactory::~UsbServiceFactory() {}
|
|
|
| ProfileKeyedService* UsbServiceFactory::BuildServiceInstanceFor(
|
| - Profile* profile) const {
|
| + content::BrowserContext* profile) const {
|
| return new UsbService();
|
| }
|
|
|