Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef DEVICE_USB_USB_LOG_H_ | |
| 6 #define DEVICE_USB_USB_LOG_H_ | |
| 7 | |
| 8 #if defined(OS_CHROMEOS) | |
| 9 #include "chromeos/device_event_log.h" | |
| 10 #else | |
| 11 #define USB_LOG(x) VLOG(1) | |
|
stevenjb
2015/02/20 00:01:27
You might want to try something like:
#define USB
| |
| 12 #endif | |
| 13 | |
| 14 #endif // DEVICE_USB_USB_LOG_H_ | |
| OLD | NEW |