Chromium Code Reviews| Index: device/usb/usb_log.h |
| diff --git a/device/usb/usb_log.h b/device/usb/usb_log.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..84cb684bb99f69dce65201776cf3303e001737cb |
| --- /dev/null |
| +++ b/device/usb/usb_log.h |
| @@ -0,0 +1,14 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef DEVICE_USB_USB_LOG_H_ |
| +#define DEVICE_USB_USB_LOG_H_ |
| + |
| +#if defined(OS_CHROMEOS) |
| +#include "chromeos/device_event_log.h" |
| +#else |
| +#define USB_LOG(x) VLOG(1) |
|
stevenjb
2015/02/20 00:01:27
You might want to try something like:
#define USB
|
| +#endif |
| + |
| +#endif // DEVICE_USB_USB_LOG_H_ |