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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 const base::Time& last_modified_time, | 54 const base::Time& last_modified_time, |
55 const FileOperationCallback& callback) OVERRIDE {} | 55 const FileOperationCallback& callback) OVERRIDE {} |
56 virtual void Pin(const base::FilePath& file_path, | 56 virtual void Pin(const base::FilePath& file_path, |
57 const FileOperationCallback& callback) OVERRIDE {} | 57 const FileOperationCallback& callback) OVERRIDE {} |
58 virtual void Unpin(const base::FilePath& file_path, | 58 virtual void Unpin(const base::FilePath& file_path, |
59 const FileOperationCallback& callback) OVERRIDE {} | 59 const FileOperationCallback& callback) OVERRIDE {} |
60 virtual void GetFileByPath(const base::FilePath& file_path, | 60 virtual void GetFileByPath(const base::FilePath& file_path, |
61 const GetFileCallback& callback) OVERRIDE {} | 61 const GetFileCallback& callback) OVERRIDE {} |
62 virtual void GetFileByResourceId( | 62 virtual void GetFileByResourceId( |
63 const std::string& resource_id, | 63 const std::string& resource_id, |
64 const DriveClientContext& context, | 64 const ClientContext& context, |
65 const GetFileCallback& get_file_callback, | 65 const GetFileCallback& get_file_callback, |
66 const google_apis::GetContentCallback& get_content_callback) OVERRIDE {} | 66 const google_apis::GetContentCallback& get_content_callback) OVERRIDE {} |
67 virtual void GetFileContentByPath( | 67 virtual void GetFileContentByPath( |
68 const base::FilePath& file_path, | 68 const base::FilePath& file_path, |
69 const GetFileContentInitializedCallback& initialized_callback, | 69 const GetFileContentInitializedCallback& initialized_callback, |
70 const google_apis::GetContentCallback& get_content_callback, | 70 const google_apis::GetContentCallback& get_content_callback, |
71 const FileOperationCallback& completion_callback) OVERRIDE {} | 71 const FileOperationCallback& completion_callback) OVERRIDE {} |
72 virtual void UpdateFileByResourceId( | 72 virtual void UpdateFileByResourceId( |
73 const std::string& resource_id, | 73 const std::string& resource_id, |
74 const DriveClientContext& context, | 74 const ClientContext& context, |
75 const FileOperationCallback& callback) OVERRIDE {} | 75 const FileOperationCallback& callback) OVERRIDE {} |
76 virtual void GetResourceEntryByPath( | 76 virtual void GetResourceEntryByPath( |
77 const base::FilePath& file_path, | 77 const base::FilePath& file_path, |
78 const GetResourceEntryCallback& callback) OVERRIDE {} | 78 const GetResourceEntryCallback& callback) OVERRIDE {} |
79 virtual void ReadDirectoryByPath( | 79 virtual void ReadDirectoryByPath( |
80 const base::FilePath& file_path, | 80 const base::FilePath& file_path, |
81 const ReadDirectoryWithSettingCallback& callback) OVERRIDE {} | 81 const ReadDirectoryWithSettingCallback& callback) OVERRIDE {} |
82 virtual void RefreshDirectory( | 82 virtual void RefreshDirectory( |
83 const base::FilePath& file_path, | 83 const base::FilePath& file_path, |
84 const FileOperationCallback& callback) OVERRIDE {} | 84 const FileOperationCallback& callback) OVERRIDE {} |
(...skipping 18 matching lines...) Expand all Loading... |
103 virtual void GetCacheEntryByResourceId( | 103 virtual void GetCacheEntryByResourceId( |
104 const std::string& resource_id, | 104 const std::string& resource_id, |
105 const std::string& md5, | 105 const std::string& md5, |
106 const GetCacheEntryCallback& callback) OVERRIDE {} | 106 const GetCacheEntryCallback& callback) OVERRIDE {} |
107 virtual void Reload() OVERRIDE {} | 107 virtual void Reload() OVERRIDE {} |
108 }; | 108 }; |
109 | 109 |
110 } // namespace drive | 110 } // namespace drive |
111 | 111 |
112 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_ | 112 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DUMMY_FILE_SYSTEM_H_ |
OLD | NEW |