OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/google_apis/dummy_drive_service.h" | 5 #include "chrome/browser/google_apis/dummy_drive_service.h" |
6 | 6 |
7 namespace google_apis { | 7 namespace google_apis { |
8 | 8 |
9 DummyDriveService::DummyDriveService() {} | 9 DummyDriveService::DummyDriveService() {} |
10 | 10 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 const std::string& parent_resource_id, | 86 const std::string& parent_resource_id, |
87 const std::string& resource_id, | 87 const std::string& resource_id, |
88 const EntryActionCallback& callback) {} | 88 const EntryActionCallback& callback) {} |
89 | 89 |
90 void DummyDriveService::AddNewDirectory( | 90 void DummyDriveService::AddNewDirectory( |
91 const std::string& parent_resource_id, | 91 const std::string& parent_resource_id, |
92 const std::string& directory_name, | 92 const std::string& directory_name, |
93 const GetResourceEntryCallback& callback) {} | 93 const GetResourceEntryCallback& callback) {} |
94 | 94 |
95 void DummyDriveService::InitiateUploadNewFile( | 95 void DummyDriveService::InitiateUploadNewFile( |
96 const FilePath& drive_file_path, | 96 const base::FilePath& drive_file_path, |
97 const std::string& content_type, | 97 const std::string& content_type, |
98 int64 content_length, | 98 int64 content_length, |
99 const GURL& parent_upload_url, | 99 const GURL& parent_upload_url, |
100 const std::string& title, | 100 const std::string& title, |
101 const InitiateUploadCallback& callback) {} | 101 const InitiateUploadCallback& callback) {} |
102 | 102 |
103 void DummyDriveService::InitiateUploadExistingFile( | 103 void DummyDriveService::InitiateUploadExistingFile( |
104 const FilePath& drive_file_path, | 104 const base::FilePath& drive_file_path, |
105 const std::string& content_type, | 105 const std::string& content_type, |
106 int64 content_length, | 106 int64 content_length, |
107 const GURL& upload_url, | 107 const GURL& upload_url, |
108 const std::string& etag, | 108 const std::string& etag, |
109 const InitiateUploadCallback& callback) {} | 109 const InitiateUploadCallback& callback) {} |
110 | 110 |
111 void DummyDriveService::ResumeUpload(const ResumeUploadParams& params, | 111 void DummyDriveService::ResumeUpload(const ResumeUploadParams& params, |
112 const UploadRangeCallback& callback) {} | 112 const UploadRangeCallback& callback) {} |
113 | 113 |
114 void DummyDriveService::GetUploadStatus( | 114 void DummyDriveService::GetUploadStatus( |
115 UploadMode upload_mode, | 115 UploadMode upload_mode, |
116 const base::FilePath& drive_file_path, | 116 const base::FilePath& drive_file_path, |
117 const GURL& upload_url, | 117 const GURL& upload_url, |
118 int64 content_length, | 118 int64 content_length, |
119 const UploadRangeCallback& callback) {} | 119 const UploadRangeCallback& callback) {} |
120 | 120 |
121 void DummyDriveService::AuthorizeApp(const GURL& edit_url, | 121 void DummyDriveService::AuthorizeApp(const GURL& edit_url, |
122 const std::string& app_id, | 122 const std::string& app_id, |
123 const AuthorizeAppCallback& callback) {} | 123 const AuthorizeAppCallback& callback) {} |
124 | 124 |
125 } // namespace google_apis | 125 } // namespace google_apis |
OLD | NEW |