Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4465)

Unified Diff: chrome/test/base/testing_profile.cc

Issue 1613473002: Replace TestingProfile::GetCookieMonster with GetCookieStore. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed some stuff Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/base/testing_profile.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« no previous file with comments | « chrome/test/base/testing_profile.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698