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 #if defined(OS_CHROMEOS) |
| 9 #include "webkit/fileapi/media/mtp_device_interface_impl_linux.h" |
| 10 #endif |
| 11 |
| 12 namespace fileapi { |
| 13 |
| 14 //TODO(kmadhusu): Implement mtp device interface on other platforms. |
| 15 #if defined(OS_CHROMEOS) |
| 16 typedef class MtpDeviceInterfaceImplLinux MediaDeviceInterfaceImpl; |
| 17 #endif |
| 18 |
| 19 } // namespace fileapi |
| 20 |
| 21 #endif // WEBKIT_FILEAPI_MEDIA_MEDIA_DEVICE_INTERFACE_IMPL_H_ |
OLD | NEW |