| Index: chrome/browser/chromeos/gdata/gdata_contacts_service.h
|
| diff --git a/chrome/browser/chromeos/gdata/gdata_contacts_service.h b/chrome/browser/chromeos/gdata/gdata_contacts_service.h
|
| index 8103bfa7e301be00a2816327a9bdc4289ae6304d..011812e7c41fe9e5beb96a14d58ee26015fdab75 100644
|
| --- a/chrome/browser/chromeos/gdata/gdata_contacts_service.h
|
| +++ b/chrome/browser/chromeos/gdata/gdata_contacts_service.h
|
| @@ -30,8 +30,8 @@ class Contact;
|
|
|
| namespace gdata {
|
|
|
| -class GDataAuthService;
|
| -class GDataOperationRunner;
|
| +class AuthService;
|
| +class OperationRunner;
|
|
|
| // Interface for fetching a user's Google contacts via the Contacts API
|
| // (described at https://developers.google.com/google-apps/contacts/v3/).
|
| @@ -67,7 +67,7 @@ class GDataContactsService : public GDataContactsServiceInterface {
|
| explicit GDataContactsService(Profile* profile);
|
| virtual ~GDataContactsService();
|
|
|
| - GDataAuthService* auth_service_for_testing();
|
| + AuthService* auth_service_for_testing();
|
|
|
| const std::string& cached_my_contacts_group_id_for_testing() const {
|
| return cached_my_contacts_group_id_;
|
| @@ -107,7 +107,7 @@ class GDataContactsService : public GDataContactsServiceInterface {
|
|
|
| Profile* profile_; // not owned
|
|
|
| - scoped_ptr<GDataOperationRunner> runner_;
|
| + scoped_ptr<OperationRunner> runner_;
|
|
|
| // Group ID for the "My Contacts" system contacts group.
|
| // Cached after a DownloadContactsRequest has completed.
|
|
|