fixup! fixup! Adding cookie flush store api

This commit is contained in:
Hari Krishna Reddy Juturu 2017-04-17 04:37:10 -07:00 committed by Kevin Sawicki
parent efca0a6e07
commit fe88697348

View file

@ -180,8 +180,9 @@ void OnSetCookie(const Cookies::SetCallback& callback, bool success) {
}
// Flushes cookie store in IO thread.
void FlushCookieStoreOnIOThread(scoped_refptr<net::URLRequestContextGetter> getter,
const base::Closure& callback) {
void FlushCookieStoreOnIOThread(
scoped_refptr<net::URLRequestContextGetter> getter,
const base::Closure& callback) {
GetCookieStore(getter)->FlushStore(base::Bind(RunCallbackInUI, callback));
}