| 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 e5a275fc890d38f8286368c1b6c581de179eb48c..e8375e0155ada23a4d2b29644ad31b7c0c9c8df8 100644
|
| --- a/chrome/browser/chromeos/gdata/gdata_contacts_service.h
|
| +++ b/chrome/browser/chromeos/gdata/gdata_contacts_service.h
|
| @@ -29,8 +29,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/).
|
| @@ -66,7 +66,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_;
|
| @@ -103,7 +103,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.
|
|
|