Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(436)

Side by Side Diff: chrome/browser/media_galleries/fileapi/device_media_async_file_util.h

Issue 810403004: [Storage] Blob Storage Refactoring pt 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed copyright Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/blob/shareable_file_reference.h"
13 #include "storage/browser/fileapi/async_file_util.h" 14 #include "storage/browser/fileapi/async_file_util.h"
14 #include "storage/common/blob/shareable_file_reference.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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 148
149 scoped_refptr<MediaPathFilterWrapper> media_path_filter_wrapper_; 149 scoped_refptr<MediaPathFilterWrapper> media_path_filter_wrapper_;
150 150
151 // For callbacks that may run after destruction. 151 // For callbacks that may run after destruction.
152 base::WeakPtrFactory<DeviceMediaAsyncFileUtil> weak_ptr_factory_; 152 base::WeakPtrFactory<DeviceMediaAsyncFileUtil> weak_ptr_factory_;
153 153
154 DISALLOW_COPY_AND_ASSIGN(DeviceMediaAsyncFileUtil); 154 DISALLOW_COPY_AND_ASSIGN(DeviceMediaAsyncFileUtil);
155 }; 155 };
156 156
157 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_DEVICE_MEDIA_ASYNC_FILE_UTIL_H _ 157 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_DEVICE_MEDIA_ASYNC_FILE_UTIL_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698