| Index: device/usb/usb_device_filter.h
|
| diff --git a/components/usb_service/usb_device_filter.h b/device/usb/usb_device_filter.h
|
| similarity index 75%
|
| rename from components/usb_service/usb_device_filter.h
|
| rename to device/usb/usb_device_filter.h
|
| index 76a3b2c73967f6bf2672e610988bdd7298d7e021..844395cb7ea89221f944ea769d78d249c74aff73 100644
|
| --- a/components/usb_service/usb_device_filter.h
|
| +++ b/device/usb/usb_device_filter.h
|
| @@ -2,21 +2,20 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef COMPONENTS_USB_SERVICE_USB_DEVICE_FILTER_H_
|
| -#define COMPONENTS_USB_SERVICE_USB_DEVICE_FILTER_H_
|
| +#ifndef DEVICE_USB_USB_DEVICE_FILTER_H_
|
| +#define DEVICE_USB_USB_DEVICE_FILTER_H_
|
|
|
| #include "base/memory/ref_counted.h"
|
| -#include "components/usb_service/usb_service_export.h"
|
|
|
| namespace base {
|
| class Value;
|
| }
|
|
|
| -namespace usb_service {
|
| +namespace device {
|
|
|
| class UsbDevice;
|
|
|
| -class USB_SERVICE_EXPORT UsbDeviceFilter {
|
| +class UsbDeviceFilter {
|
| public:
|
| UsbDeviceFilter();
|
| ~UsbDeviceFilter();
|
| @@ -43,6 +42,6 @@ class USB_SERVICE_EXPORT UsbDeviceFilter {
|
| bool interface_protocol_set_ : 1;
|
| };
|
|
|
| -} // namespace usb_service
|
| +} // namespace device
|
|
|
| -#endif // COMPONENTS_USB_SERVICE_USB_DEVICE_FILTER_H_
|
| +#endif // DEVICE_USB_USB_DEVICE_FILTER_H_
|
|
|