| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_GALLERIES_LINUX_MTP_DEVICE_TASK_HELPER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_LINUX_MTP_DEVICE_TASK_HELPER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_GALLERIES_LINUX_MTP_DEVICE_TASK_HELPER_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERIES_LINUX_MTP_DEVICE_TASK_HELPER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/platform_file.h" | |
| 15 #include "chrome/browser/media_galleries/fileapi/mtp_device_async_delegate.h" | 14 #include "chrome/browser/media_galleries/fileapi/mtp_device_async_delegate.h" |
| 16 #include "device/media_transfer_protocol/mtp_file_entry.pb.h" | 15 #include "device/media_transfer_protocol/mtp_file_entry.pb.h" |
| 17 #include "webkit/browser/fileapi/async_file_util.h" | 16 #include "webkit/browser/fileapi/async_file_util.h" |
| 18 | 17 |
| 19 class MTPReadFileWorker; | 18 class MTPReadFileWorker; |
| 20 struct SnapshotRequestInfo; | 19 struct SnapshotRequestInfo; |
| 21 | 20 |
| 22 // MTPDeviceTaskHelper dispatches the media transfer protocol (MTP) device | 21 // MTPDeviceTaskHelper dispatches the media transfer protocol (MTP) device |
| 23 // operation requests (such as GetFileInfo, ReadDirectory, CreateSnapshotFile, | 22 // operation requests (such as GetFileInfo, ReadDirectory, CreateSnapshotFile, |
| 24 // OpenStorage and CloseStorage) to the MediaTransferProtocolManager. | 23 // OpenStorage and CloseStorage) to the MediaTransferProtocolManager. |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 // Used to handle WriteDataInfoSnapshotFile request. | 170 // Used to handle WriteDataInfoSnapshotFile request. |
| 172 scoped_ptr<MTPReadFileWorker> read_file_worker_; | 171 scoped_ptr<MTPReadFileWorker> read_file_worker_; |
| 173 | 172 |
| 174 // For callbacks that may run after destruction. | 173 // For callbacks that may run after destruction. |
| 175 base::WeakPtrFactory<MTPDeviceTaskHelper> weak_ptr_factory_; | 174 base::WeakPtrFactory<MTPDeviceTaskHelper> weak_ptr_factory_; |
| 176 | 175 |
| 177 DISALLOW_COPY_AND_ASSIGN(MTPDeviceTaskHelper); | 176 DISALLOW_COPY_AND_ASSIGN(MTPDeviceTaskHelper); |
| 178 }; | 177 }; |
| 179 | 178 |
| 180 #endif // CHROME_BROWSER_MEDIA_GALLERIES_LINUX_MTP_DEVICE_TASK_HELPER_H_ | 179 #endif // CHROME_BROWSER_MEDIA_GALLERIES_LINUX_MTP_DEVICE_TASK_HELPER_H_ |
| OLD | NEW |