Chromium Code Reviews| Index: google_apis/gaia/fake_gaia.cc |
| diff --git a/google_apis/gaia/fake_gaia.cc b/google_apis/gaia/fake_gaia.cc |
| index 7ba1c585f4d1cde1a527f9b502e20ac121478341..d7217fd48412bf5c26205f150cc6c549f2aecf59 100644 |
| --- a/google_apis/gaia/fake_gaia.cc |
| +++ b/google_apis/gaia/fake_gaia.cc |
| @@ -432,7 +432,9 @@ void FakeGaia::HandleServiceLoginAuth(const HttpRequest& request, |
| http_response->set_code(net::HTTP_TEMPORARY_REDIRECT); |
| http_response->AddCustomHeader("Location", redirect_url); |
| http_response->AddCustomHeader("google-accounts-signin", |
| - base::StringPrintf("email=\"%s\", sessionindex=0", email.c_str())); |
| + base::StringPrintf( |
| + "email=\"%s\", obfuscatedid=\"12345\", sessionindex=0", |
|
bartfab (slow)
2014/10/14 17:12:38
Nit: Move "12345" to a constant like kTestObfuscat
Roger Tawa OOO till Jul 10th
2014/10/16 02:39:32
Done.
|
| + email.c_str())); |
| } |
| void FakeGaia::HandleSSO(const HttpRequest& request, |