Chromium Code Reviews| Index: chrome/common/extensions/image_writer/image_writer_util_mac.h |
| diff --git a/chrome/common/extensions/image_writer/image_writer_util_mac.h b/chrome/common/extensions/image_writer/image_writer_util_mac.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..80bb511031eb29c967798362c68e6d99bb1f5925 |
| --- /dev/null |
| +++ b/chrome/common/extensions/image_writer/image_writer_util_mac.h |
| @@ -0,0 +1,15 @@ |
| +// Copyright 2014 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. |
|
Robert Sesek
2014/07/09 01:01:12
nit: blank line after
Drew Haven
2014/07/09 18:27:20
Done.
|
| +#ifndef CHROME_COMMON_EXTENSIONS_IMAGE_WRITER_IMAGE_WRITER_UTIL_MAC_H |
| +#define CHROME_COMMON_EXTENSIONS_IMAGE_WRITER_IMAGE_WRITER_UTIL_MAC_H |
| + |
| +#include <IOKit/IOKitLib.h> |
| + |
| +namespace extensions { |
| + |
| +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.
|
| + |
| +} // namespace extensions |
| + |
| +#endif // CHROME_COMMON_EXTENSIONS_IMAGE_WRITER_IMAGE_WRITER_UTIL_MAC_H |