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_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_ |
6 #define CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_ |
7 | 7 |
8 #include "chrome/browser/chromeos/drive/file_system_interface.h" | 8 #include "chrome/browser/chromeos/drive/file_system_interface.h" |
9 | 9 |
10 namespace drive { | 10 namespace drive { |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 const SearchCallback& callback) OVERRIDE {} | 75 const SearchCallback& callback) OVERRIDE {} |
76 virtual void SearchMetadata( | 76 virtual void SearchMetadata( |
77 const std::string& query, | 77 const std::string& query, |
78 int options, | 78 int options, |
79 int at_most_num_matches, | 79 int at_most_num_matches, |
80 const SearchMetadataCallback& callback) OVERRIDE {} | 80 const SearchMetadataCallback& callback) OVERRIDE {} |
81 virtual void GetAvailableSpace( | 81 virtual void GetAvailableSpace( |
82 const GetAvailableSpaceCallback& callback) OVERRIDE {} | 82 const GetAvailableSpaceCallback& callback) OVERRIDE {} |
83 virtual void GetShareUrl(const base::FilePath& file_path, | 83 virtual void GetShareUrl(const base::FilePath& file_path, |
84 const GURL& embed_origin, | 84 const GURL& embed_origin, |
85 const GetShareUrlCallback& callback) OVERRIDE {} | 85 const GetUrlCallback& callback) OVERRIDE {} |
| 86 virtual void GetDownloadUrl(const base::FilePath& file_path, |
| 87 const GetUrlCallback& callback) OVERRIDE {} |
86 virtual void GetMetadata( | 88 virtual void GetMetadata( |
87 const GetFilesystemMetadataCallback& callback) OVERRIDE {} | 89 const GetFilesystemMetadataCallback& callback) OVERRIDE {} |
88 virtual void MarkCacheFileAsMounted( | 90 virtual void MarkCacheFileAsMounted( |
89 const base::FilePath& drive_file_path, | 91 const base::FilePath& drive_file_path, |
90 const MarkMountedCallback& callback) OVERRIDE {} | 92 const MarkMountedCallback& callback) OVERRIDE {} |
91 virtual void MarkCacheFileAsUnmounted( | 93 virtual void MarkCacheFileAsUnmounted( |
92 const base::FilePath& cache_file_path, | 94 const base::FilePath& cache_file_path, |
93 const FileOperationCallback& callback) OVERRIDE {} | 95 const FileOperationCallback& callback) OVERRIDE {} |
94 virtual void AddPermission(const base::FilePath& drive_file_path, | 96 virtual void AddPermission(const base::FilePath& drive_file_path, |
95 const std::string& email, | 97 const std::string& email, |
96 google_apis::drive::PermissionRole role, | 98 google_apis::drive::PermissionRole role, |
97 const FileOperationCallback& callback) OVERRIDE {} | 99 const FileOperationCallback& callback) OVERRIDE {} |
98 virtual void Reset(const FileOperationCallback& callback) OVERRIDE {} | 100 virtual void Reset(const FileOperationCallback& callback) OVERRIDE {} |
99 virtual void GetPathFromResourceId(const std::string& resource_id, | 101 virtual void GetPathFromResourceId(const std::string& resource_id, |
100 const GetFilePathCallback& callback) | 102 const GetFilePathCallback& callback) |
101 OVERRIDE {} | 103 OVERRIDE {} |
102 }; | 104 }; |
103 | 105 |
104 } // namespace drive | 106 } // namespace drive |
105 | 107 |
106 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_ | 108 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_ |
OLD | NEW |