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

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

Issue 15729007: Cleanup: Remove fileapi::FileSystemMountPointProvider::InitializeCopyOrMoveFileValidatorFactory() a… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/media_galleries/fileapi/media_file_system_mount_point_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_MEDIA_FILE_SYSTEM_MOUNT_POINT_PRO VIDER_H_ 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_PRO VIDER_H_
6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_PRO VIDER_H_ 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_PRO VIDER_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" 9 #include "webkit/browser/fileapi/file_system_mount_point_provider.h"
10 10
(...skipping 28 matching lines...) Expand all
39 const fileapi::FileSystemURL& url, 39 const fileapi::FileSystemURL& url,
40 bool create) OVERRIDE; 40 bool create) OVERRIDE;
41 virtual fileapi::FileSystemFileUtil* GetFileUtil( 41 virtual fileapi::FileSystemFileUtil* GetFileUtil(
42 fileapi::FileSystemType type) OVERRIDE; 42 fileapi::FileSystemType type) OVERRIDE;
43 virtual fileapi::AsyncFileUtil* GetAsyncFileUtil( 43 virtual fileapi::AsyncFileUtil* GetAsyncFileUtil(
44 fileapi::FileSystemType type) OVERRIDE; 44 fileapi::FileSystemType type) OVERRIDE;
45 virtual fileapi::CopyOrMoveFileValidatorFactory* 45 virtual fileapi::CopyOrMoveFileValidatorFactory*
46 GetCopyOrMoveFileValidatorFactory( 46 GetCopyOrMoveFileValidatorFactory(
47 fileapi::FileSystemType type, 47 fileapi::FileSystemType type,
48 base::PlatformFileError* error_code) OVERRIDE; 48 base::PlatformFileError* error_code) OVERRIDE;
49 virtual void InitializeCopyOrMoveFileValidatorFactory(
50 fileapi::FileSystemType type,
51 scoped_ptr<fileapi::CopyOrMoveFileValidatorFactory> factory) OVERRIDE;
52 virtual fileapi::FilePermissionPolicy GetPermissionPolicy( 49 virtual fileapi::FilePermissionPolicy GetPermissionPolicy(
53 const fileapi::FileSystemURL& url, int permissions) const OVERRIDE; 50 const fileapi::FileSystemURL& url, int permissions) const OVERRIDE;
54 virtual fileapi::FileSystemOperation* CreateFileSystemOperation( 51 virtual fileapi::FileSystemOperation* CreateFileSystemOperation(
55 const fileapi::FileSystemURL& url, 52 const fileapi::FileSystemURL& url,
56 fileapi::FileSystemContext* context, 53 fileapi::FileSystemContext* context,
57 base::PlatformFileError* error_code) const OVERRIDE; 54 base::PlatformFileError* error_code) const OVERRIDE;
58 virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader( 55 virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader(
59 const fileapi::FileSystemURL& url, 56 const fileapi::FileSystemURL& url,
60 int64 offset, 57 int64 offset,
61 const base::Time& expected_modification_time, 58 const base::Time& expected_modification_time,
(...skipping 21 matching lines...) Expand all
83 scoped_ptr<DeviceMediaAsyncFileUtil> device_media_async_file_util_; 80 scoped_ptr<DeviceMediaAsyncFileUtil> device_media_async_file_util_;
84 scoped_ptr<fileapi::AsyncFileUtil> picasa_file_util_; 81 scoped_ptr<fileapi::AsyncFileUtil> picasa_file_util_;
85 scoped_ptr<fileapi::AsyncFileUtil> itunes_file_util_; 82 scoped_ptr<fileapi::AsyncFileUtil> itunes_file_util_;
86 83
87 DISALLOW_COPY_AND_ASSIGN(MediaFileSystemMountPointProvider); 84 DISALLOW_COPY_AND_ASSIGN(MediaFileSystemMountPointProvider);
88 }; 85 };
89 86
90 } // namespace chrome 87 } // namespace chrome
91 88
92 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_ PROVIDER_H_ 89 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_ PROVIDER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/media_galleries/fileapi/media_file_system_mount_point_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698