1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/google_apis/dummy_drive_service.h"
namespace google_apis {
DummyDriveService::DummyDriveService() {}
DummyDriveService::~DummyDriveService() {}
void DummyDriveService::Initialize(Profile* profile) {}
void DummyDriveService::AddObserver(DriveServiceObserver* observer) {}
void DummyDriveService::RemoveObserver(DriveServiceObserver* observer) {}
bool DummyDriveService::CanStartOperation() const { return true; }
void DummyDriveService::CancelAll() {}
bool DummyDriveService::CancelForFilePath(const base::FilePath& file_path) {
return true;
}
OperationProgressStatusList DummyDriveService::GetProgressStatusList() const {
return OperationProgressStatusList();
}
bool DummyDriveService::HasAccessToken() const { return true; }
bool DummyDriveService::HasRefreshToken() const { return true; }
void DummyDriveService::ClearAccessToken() { }
void DummyDriveService::ClearRefreshToken() { }
std::string DummyDriveService::GetRootResourceId() const {
return "dummy_root";
}
void DummyDriveService::GetResourceList(
const GURL& feed_url,
int64 start_changestamp,
const std::string& search_query,
bool shared_with_me,
const std::string& directory_resource_id,
const GetResourceListCallback& callback) {}
void DummyDriveService::GetResourceEntry(
const std::string& resource_id,
const GetResourceEntryCallback& callback) {}
void DummyDriveService::GetAccountMetadata(
const GetAccountMetadataCallback& callback) {}
void DummyDriveService::GetAppList(const GetAppListCallback& callback) {}
void DummyDriveService::DeleteResource(const std::string& resource_id,
const std::string& etag,
const EntryActionCallback& callback) {}
void DummyDriveService::DownloadFile(
const base::FilePath& virtual_path,
const base::FilePath& local_cache_path,
const GURL& download_url,
const DownloadActionCallback& download_action_callback,
const GetContentCallback& get_content_callback) {}
void DummyDriveService::CopyHostedDocument(
const std::string& resource_id,
const std::string& new_name,
const GetResourceEntryCallback& callback) {}
void DummyDriveService::RenameResource(const std::string& resource_id,
const std::string& new_name,
const EntryActionCallback& callback) {}
void DummyDriveService::AddResourceToDirectory(
const std::string& parent_resource_id,
const std::string& resource_id,
const EntryActionCallback& callback) {}
void DummyDriveService::RemoveResourceFromDirectory(
const std::string& parent_resource_id,
const std::string& resource_id,
const EntryActionCallback& callback) {}
void DummyDriveService::AddNewDirectory(
const std::string& parent_resource_id,
const std::string& directory_name,
const GetResourceEntryCallback& callback) {}
void DummyDriveService::InitiateUploadNewFile(
const FilePath& drive_file_path,
const std::string& content_type,
int64 content_length,
const GURL& parent_upload_url,
const std::string& title,
const InitiateUploadCallback& callback) {}
void DummyDriveService::InitiateUploadExistingFile(
const FilePath& drive_file_path,
const std::string& content_type,
int64 content_length,
const GURL& upload_url,
const std::string& etag,
const InitiateUploadCallback& callback) {}
void DummyDriveService::ResumeUpload(const ResumeUploadParams& params,
const UploadRangeCallback& callback) {}
void DummyDriveService::GetUploadStatus(
UploadMode upload_mode,
const base::FilePath& drive_file_path,
const GURL& upload_url,
int64 content_length,
const UploadRangeCallback& callback) {}
void DummyDriveService::AuthorizeApp(const GURL& edit_url,
const std::string& app_id,
const AuthorizeAppCallback& callback) {}
} // namespace google_apis
|