| Index: google_apis/gaia/fake_gaia.cc
|
| diff --git a/google_apis/gaia/fake_gaia.cc b/google_apis/gaia/fake_gaia.cc
|
| index edf3647d70fb0f2e19649054c9162fc2f623d645..4cfe6040e53e0ab68bc4dac93116348e3fa8caf1 100644
|
| --- a/google_apis/gaia/fake_gaia.cc
|
| +++ b/google_apis/gaia/fake_gaia.cc
|
| @@ -50,7 +50,6 @@
|
|
|
| const char kListAccountsResponseFormat[] =
|
| "[\"gaia.l.a.r\",[[\"gaia.l.a\",1,\"\",\"%s\",\"\",1,1,0]]]";
|
| -const char kPeopleGetResponseFormat[] = "{\"id\":\"%s\"}";
|
|
|
| typedef std::map<std::string, std::string> CookieMap;
|
|
|
| @@ -177,10 +176,6 @@
|
| // Handles /ListAccounts GAIA call.
|
| REGISTER_RESPONSE_HANDLER(
|
| gaia_urls->list_accounts_url(), HandleListAccounts);
|
| -
|
| - // Handles /plus/v1/people/me
|
| - REGISTER_RESPONSE_HANDLER(
|
| - gaia_urls->people_get_url(), HandlePeopleGet);
|
| }
|
|
|
| scoped_ptr<HttpResponse> FakeGaia::HandleRequest(const HttpRequest& request) {
|
| @@ -534,11 +529,3 @@
|
| kListAccountsResponseFormat, merge_session_params_.email.c_str()));
|
| http_response->set_code(net::HTTP_OK);
|
| }
|
| -
|
| -
|
| -void FakeGaia::HandlePeopleGet(const HttpRequest& request,
|
| - BasicHttpResponse* http_response) {
|
| - http_response->set_content(base::StringPrintf(
|
| - kPeopleGetResponseFormat, "name"));
|
| - http_response->set_code(net::HTTP_OK);
|
| -}
|
|
|