OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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. | |
Robert Sesek
2014/07/09 01:01:12
nit: blank line after
Drew Haven
2014/07/09 18:27:20
Done.
| |
4 #ifndef CHROME_COMMON_EXTENSIONS_IMAGE_WRITER_IMAGE_WRITER_UTIL_MAC_H | |
5 #define CHROME_COMMON_EXTENSIONS_IMAGE_WRITER_IMAGE_WRITER_UTIL_MAC_H | |
6 | |
7 #include <IOKit/IOKitLib.h> | |
8 | |
9 namespace extensions { | |
10 | |
11 bool IsUsbDevice(io_object_t disk_obj); | |
Robert Sesek
2014/07/09 01:01:12
Needs a comment both describing what it does and a
Drew Haven
2014/07/09 18:27:20
Done.
| |
12 | |
13 } // namespace extensions | |
14 | |
15 #endif // CHROME_COMMON_EXTENSIONS_IMAGE_WRITER_IMAGE_WRITER_UTIL_MAC_H | |
OLD | NEW |