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

Unified Diff: net/cookies/cookie_monster_store_test.h

Issue 2937963003: Shift cookie system callbacks to OnceCallback to impedance match mojo. (Closed)
Patch Set: Finish Merge Created 3 years, 6 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_monster_store_test.h
diff --git a/net/cookies/cookie_monster_store_test.h b/net/cookies/cookie_monster_store_test.h
index 29b063fd1aa9d60de97c8446740edd9813560077..816077b74adace668c3f8759cf9b681f2b918222 100644
--- a/net/cookies/cookie_monster_store_test.h
+++ b/net/cookies/cookie_monster_store_test.h
@@ -99,7 +99,7 @@ class MockPersistentCookieStore : public CookieMonster::PersistentCookieStore {
void DeleteCookie(const CanonicalCookie& cookie) override;
- void Flush(const base::Closure& callback) override;
+ void Flush(base::OnceClosure callback) override;
void SetForceKeepSessionState() override;
@@ -174,7 +174,7 @@ class MockSimplePersistentCookieStore
void DeleteCookie(const CanonicalCookie& cookie) override;
- void Flush(const base::Closure& callback) override;
+ void Flush(base::OnceClosure callback) override;
void SetForceKeepSessionState() override;

Powered by Google App Engine
This is Rietveld 408576698