OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_FILEAPI_DEVICE_MEDIA_ASYNC_FILE_UTIL_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_DEVICE_MEDIA_ASYNC_FILE_UTIL_H_ |
6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_DEVICE_MEDIA_ASYNC_FILE_UTIL_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_DEVICE_MEDIA_ASYNC_FILE_UTIL_H_ |
7 | 7 |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
11 #include "webkit/blob/shareable_file_reference.h" | |
12 #include "webkit/browser/fileapi/async_file_util.h" | 11 #include "webkit/browser/fileapi/async_file_util.h" |
| 12 #include "webkit/common/blob/shareable_file_reference.h" |
13 | 13 |
14 namespace base { | 14 namespace base { |
15 class SequencedTaskRunner; | 15 class SequencedTaskRunner; |
16 class Time; | 16 class Time; |
17 } | 17 } |
18 | 18 |
19 namespace fileapi { | 19 namespace fileapi { |
20 class FileSystemOperationContext; | 20 class FileSystemOperationContext; |
21 class FileSystemURL; | 21 class FileSystemURL; |
22 } | 22 } |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 | 178 |
179 // For callbacks that may run after destruction. | 179 // For callbacks that may run after destruction. |
180 base::WeakPtrFactory<DeviceMediaAsyncFileUtil> weak_ptr_factory_; | 180 base::WeakPtrFactory<DeviceMediaAsyncFileUtil> weak_ptr_factory_; |
181 | 181 |
182 DISALLOW_COPY_AND_ASSIGN(DeviceMediaAsyncFileUtil); | 182 DISALLOW_COPY_AND_ASSIGN(DeviceMediaAsyncFileUtil); |
183 }; | 183 }; |
184 | 184 |
185 } // namespace chrome | 185 } // namespace chrome |
186 | 186 |
187 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_DEVICE_MEDIA_ASYNC_FILE_UTIL_H
_ | 187 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_DEVICE_MEDIA_ASYNC_FILE_UTIL_H
_ |
OLD | NEW |