summaryrefslogtreecommitdiffstats
path: root/chrome/browser/usb
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/usb')
-rw-r--r--chrome/browser/usb/usb_service.h2
-rw-r--r--chrome/browser/usb/usb_service_factory.cc2
-rw-r--r--chrome/browser/usb/usb_service_factory.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/usb/usb_service.h b/chrome/browser/usb/usb_service.h
index 3987786d3..716359b 100644
--- a/chrome/browser/usb/usb_service.h
+++ b/chrome/browser/usb/usb_service.h
@@ -11,8 +11,8 @@
#include "base/basictypes.h"
#include "base/threading/platform_thread.h"
-#include "chrome/browser/profiles/profile_keyed_service.h"
#include "chrome/browser/usb/usb_device.h"
+#include "components/browser_context_keyed_service/browser_context_keyed_service.h"
#include "third_party/libusb/src/libusb/libusb.h"
class UsbEventHandler;
diff --git a/chrome/browser/usb/usb_service_factory.cc b/chrome/browser/usb/usb_service_factory.cc
index 6b91c19..cd91233 100644
--- a/chrome/browser/usb/usb_service_factory.cc
+++ b/chrome/browser/usb/usb_service_factory.cc
@@ -6,8 +6,8 @@
#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"
+#include "components/browser_context_keyed_service/browser_context_dependency_manager.h"
UsbServiceFactory* UsbServiceFactory::GetInstance() {
return Singleton<UsbServiceFactory>::get();
diff --git a/chrome/browser/usb/usb_service_factory.h b/chrome/browser/usb/usb_service_factory.h
index 662b46a..7a4b691 100644
--- a/chrome/browser/usb/usb_service_factory.h
+++ b/chrome/browser/usb/usb_service_factory.h
@@ -6,7 +6,7 @@
#define CHROME_BROWSER_USB_USB_SERVICE_FACTORY_H_
#include "base/memory/singleton.h"
-#include "chrome/browser/profiles/profile_keyed_service_factory.h"
+#include "components/browser_context_keyed_service/browser_context_keyed_service_factory.h"
class Profile;
class UsbService;