blob: 67861e3a248c06be2e3e1c55b10ad77164ab8a92 (
plain)
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
|
// 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.
#ifndef CHROME_BROWSER_GOOGLE_APIS_GDATA_CONTACTS_REQUESTS_H_
#define CHROME_BROWSER_GOOGLE_APIS_GDATA_CONTACTS_REQUESTS_H_
#include <string>
#include "chrome/browser/google_apis/base_requests.h"
namespace google_apis {
//========================== GetContactGroupsRequest =========================
// This class fetches a JSON feed containing a user's contact groups.
class GetContactGroupsRequest : public GetDataRequest {
public:
GetContactGroupsRequest(RequestSender* runner,
const GetDataCallback& callback);
virtual ~GetContactGroupsRequest();
void set_feed_url_for_testing(const GURL& url) {
feed_url_for_testing_ = url;
}
protected:
// Overridden from GetDataRequest.
virtual GURL GetURL() const OVERRIDE;
private:
// If non-empty, URL of the feed to fetch.
GURL feed_url_for_testing_;
DISALLOW_COPY_AND_ASSIGN(GetContactGroupsRequest);
};
//============================ GetContactsRequest ============================
// This class fetches a JSON feed containing a user's contacts.
class GetContactsRequest : public GetDataRequest {
public:
GetContactsRequest(RequestSender* runner,
const std::string& group_id,
const base::Time& min_update_time,
const GetDataCallback& callback);
virtual ~GetContactsRequest();
void set_feed_url_for_testing(const GURL& url) {
feed_url_for_testing_ = url;
}
protected:
// Overridden from GetDataRequest.
virtual GURL GetURL() const OVERRIDE;
private:
// If non-empty, URL of the feed to fetch.
GURL feed_url_for_testing_;
// If non-empty, contains the ID of the group whose contacts should be
// returned. Group IDs generally look like this:
// http://www.google.com/m8/feeds/groups/user%40gmail.com/base/6
std::string group_id_;
// If is_null() is false, contains a minimum last-updated time that will be
// used to filter contacts.
base::Time min_update_time_;
DISALLOW_COPY_AND_ASSIGN(GetContactsRequest);
};
//========================== GetContactPhotoRequest ==========================
// This class fetches a contact's photo.
class GetContactPhotoRequest : public UrlFetchRequestBase {
public:
GetContactPhotoRequest(RequestSender* runner,
const GURL& photo_url,
const GetContentCallback& callback);
virtual ~GetContactPhotoRequest();
protected:
// Overridden from UrlFetchRequestBase.
virtual GURL GetURL() const OVERRIDE;
virtual void ProcessURLFetchResults(const net::URLFetcher* source) OVERRIDE;
virtual void RunCallbackOnPrematureFailure(GDataErrorCode code) OVERRIDE;
private:
// Location of the photo to fetch.
GURL photo_url_;
// Callback to which the photo data is passed.
GetContentCallback callback_;
DISALLOW_COPY_AND_ASSIGN(GetContactPhotoRequest);
};
} // namespace google_apis
#endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_CONTACTS_REQUESTS_H_
|