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.h" | 8 #include "base/files/file.h" |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "storage/browser/fileapi/async_file_util.h" |
13 #include "storage/common/blob/shareable_file_reference.h" | 14 #include "storage/common/blob/shareable_file_reference.h" |
14 #include "webkit/browser/fileapi/async_file_util.h" | |
15 | 15 |
16 namespace storage { | 16 namespace storage { |
17 class FileSystemOperationContext; | 17 class FileSystemOperationContext; |
18 class FileSystemURL; | 18 class FileSystemURL; |
19 } | 19 } |
20 | 20 |
21 namespace storage { | 21 namespace storage { |
22 class FileStreamReader; | 22 class FileStreamReader; |
23 } | 23 } |
24 | 24 |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 | 157 |
158 scoped_refptr<MediaPathFilterWrapper> media_path_filter_wrapper_; | 158 scoped_refptr<MediaPathFilterWrapper> media_path_filter_wrapper_; |
159 | 159 |
160 // For callbacks that may run after destruction. | 160 // For callbacks that may run after destruction. |
161 base::WeakPtrFactory<DeviceMediaAsyncFileUtil> weak_ptr_factory_; | 161 base::WeakPtrFactory<DeviceMediaAsyncFileUtil> weak_ptr_factory_; |
162 | 162 |
163 DISALLOW_COPY_AND_ASSIGN(DeviceMediaAsyncFileUtil); | 163 DISALLOW_COPY_AND_ASSIGN(DeviceMediaAsyncFileUtil); |
164 }; | 164 }; |
165 | 165 |
166 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_DEVICE_MEDIA_ASYNC_FILE_UTIL_H
_ | 166 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_DEVICE_MEDIA_ASYNC_FILE_UTIL_H
_ |
OLD | NEW |