OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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 WEBKIT_FILEAPI_MEDIA_MEDIA_DEVICE_INTERFACE_IMPL_H_ | |
6 #define WEBKIT_FILEAPI_MEDIA_MEDIA_DEVICE_INTERFACE_IMPL_H_ | |
7 | |
8 #include "build/build_config.h" | |
9 | |
10 #if defined(OS_POSIX) && !defined(OS_MACOSX) | |
11 #include "webkit/fileapi/media/mtp_device_interface_impl_linux.h" | |
12 #endif | |
13 | |
14 namespace fileapi { | |
15 | |
16 //TODO(kmadhusu): Implement mtp device interface on other platforms. | |
Lei Zhang
2012/07/31 20:04:37
nit: space after //
kmadhusu
2012/08/01 01:43:59
Done.
| |
17 #if defined(OS_POSIX) && !defined(OS_MACOSX) | |
18 typedef class MtpDeviceInterfaceImplLinux MediaDeviceInterfaceImpl; | |
19 #endif | |
20 | |
21 } // namespace fileapi | |
22 | |
23 #endif // WEBKIT_FILEAPI_MEDIA_MEDIA_DEVICE_INTERFACE_IMPL_H_ | |
OLD | NEW |