| Index: chrome/test/base/testing_profile.cc
|
| diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc
|
| index 9717b0230643ab86a61c57679edf0f196627c65f..66d12ac9fa6dc96e13583edc442c17d2fb06006e 100644
|
| --- a/chrome/test/base/testing_profile.cc
|
| +++ b/chrome/test/base/testing_profile.cc
|
| @@ -735,11 +735,10 @@ TestingProfile::GetExtensionSpecialStoragePolicy() {
|
| #endif
|
| }
|
|
|
| -net::CookieMonster* TestingProfile::GetCookieMonster() {
|
| +net::CookieStore* TestingProfile::GetCookieStore() {
|
| if (!GetRequestContext())
|
| return NULL;
|
| - return GetRequestContext()->GetURLRequestContext()->cookie_store()->
|
| - GetCookieMonster();
|
| + return GetRequestContext()->GetURLRequestContext()->cookie_store();
|
| }
|
|
|
| void TestingProfile::CreateTestingPrefService() {
|
|
|