Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5523)

Unified Diff: chrome/browser/google_apis/gdata_contacts_operations.cc

Issue 16424004: google_apis: Rename base_operations.h/cc to base_requests.h/cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/google_apis/gdata_contacts_operations.cc
diff --git a/chrome/browser/google_apis/gdata_contacts_operations.cc b/chrome/browser/google_apis/gdata_contacts_operations.cc
index 9362d36b97020f882f488c77d0a9e8bc1e9dc071..3d5abb95ac2fe7270c1d3845049614f5b379c6c8 100644
--- a/chrome/browser/google_apis/gdata_contacts_operations.cc
+++ b/chrome/browser/google_apis/gdata_contacts_operations.cc
@@ -40,7 +40,7 @@ GetContactGroupsOperation::GetContactGroupsOperation(
OperationRunner* runner,
net::URLRequestContextGetter* url_request_context_getter,
const GetDataCallback& callback)
- : GetDataOperation(runner, url_request_context_getter, callback) {
+ : GetDataRequest(runner, url_request_context_getter, callback) {
}
GetContactGroupsOperation::~GetContactGroupsOperation() {}
@@ -59,7 +59,7 @@ GetContactsOperation::GetContactsOperation(
const std::string& group_id,
const base::Time& min_update_time,
const GetDataCallback& callback)
- : GetDataOperation(runner, url_request_context_getter, callback),
+ : GetDataRequest(runner, url_request_context_getter, callback),
group_id_(group_id),
min_update_time_(min_update_time) {
}
@@ -90,7 +90,7 @@ GetContactPhotoOperation::GetContactPhotoOperation(
net::URLRequestContextGetter* url_request_context_getter,
const GURL& photo_url,
const GetContentCallback& callback)
- : UrlFetchOperationBase(runner, url_request_context_getter),
+ : UrlFetchRequestBase(runner, url_request_context_getter),
photo_url_(photo_url),
callback_(callback) {
}
« no previous file with comments | « chrome/browser/google_apis/gdata_contacts_operations.h ('k') | chrome/browser/google_apis/gdata_wapi_operations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698