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

Unified Diff: net/cookies/cookie_store.cc

Issue 1701063002: CookieStore: Remove reference counting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@threadsafe
Patch Set: Fix leak Created 4 years, 10 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
Index: net/cookies/cookie_store.cc
diff --git a/net/cookies/cookie_store.cc b/net/cookies/cookie_store.cc
index 780a29259935fa550551e90a0b2cb60ebcc93729..85f01929270960ad581f3dc58bfa23665abb884c 100644
--- a/net/cookies/cookie_store.cc
+++ b/net/cookies/cookie_store.cc
@@ -8,8 +8,6 @@
namespace net {
-CookieStore::CookieStore() {}
-
CookieStore::~CookieStore() {}
std::string CookieStore::BuildCookieLine(
@@ -62,4 +60,6 @@ void CookieStore::GetAllCookiesForURLAsync(
GetCookieListWithOptionsAsync(url, options, callback);
}
+CookieStore::CookieStore() {}
+
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698