| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_MEDIA_GALLERY_MTP_DEVICE_DELEGATE_IMPL_LINUX_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERY_LINUX_MTP_DEVICE_DELEGATE_IMPL_LINUX_H_ |
| 6 #define CHROME_BROWSER_MEDIA_GALLERY_MTP_DEVICE_DELEGATE_IMPL_LINUX_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERY_LINUX_MTP_DEVICE_DELEGATE_IMPL_LINUX_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "base/platform_file.h" | 11 #include "base/platform_file.h" |
| 12 #include "base/synchronization/waitable_event.h" | 12 #include "base/synchronization/waitable_event.h" |
| 13 #include "webkit/fileapi/file_system_file_util.h" | 13 #include "webkit/fileapi/file_system_file_util.h" |
| 14 #include "webkit/fileapi/media/mtp_device_delegate.h" | 14 #include "webkit/fileapi/media/mtp_device_delegate.h" |
| 15 | 15 |
| 16 class FilePath; | 16 class FilePath; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 // Used to notify |media_task_runner_| pending tasks about the shutdown | 86 // Used to notify |media_task_runner_| pending tasks about the shutdown |
| 87 // sequence. Signaled on the IO thread. | 87 // sequence. Signaled on the IO thread. |
| 88 base::WaitableEvent on_shutdown_event_; | 88 base::WaitableEvent on_shutdown_event_; |
| 89 | 89 |
| 90 DISALLOW_COPY_AND_ASSIGN(MTPDeviceDelegateImplLinux); | 90 DISALLOW_COPY_AND_ASSIGN(MTPDeviceDelegateImplLinux); |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 } // namespace chrome | 93 } // namespace chrome |
| 94 | 94 |
| 95 #endif // CHROME_BROWSER_MEDIA_GALLERY_MTP_DEVICE_DELEGATE_IMPL_LINUX_H_ | 95 #endif // CHROME_BROWSER_MEDIA_GALLERY_LINUX_MTP_DEVICE_DELEGATE_IMPL_LINUX_H_ |
| OLD | NEW |