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

Unified Diff: net/websockets/websocket_job_test.cc

Issue 676073003: Add AddCallbackForCookie method to CookieStore. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/websockets/websocket_job_test.cc
diff --git a/net/websockets/websocket_job_test.cc b/net/websockets/websocket_job_test.cc
index 3faf8093f3719568e28b9b037f2a68c9c2e729a4..dbdba72725c22b97d7efa61c3c7894bfad1557c7 100644
--- a/net/websockets/websocket_job_test.cc
+++ b/net/websockets/websocket_job_test.cc
@@ -228,6 +228,12 @@ class MockCookieStore : public CookieStore {
CookieMonster* GetCookieMonster() override { return NULL; }
+ scoped_ptr<CookieStore::CookieChangedSubscription>
+ AddCallbackForCookie(const GURL& url, const std::string& name,
+ const CookieChangedCallback& callback) override {
+ return scoped_ptr<CookieChangedSubscription>();
erikwright (departed) 2014/10/24 20:11:10 ADD_FAILURE()
+ }
+
const std::vector<Entry>& entries() const { return entries_; }
private:
« net/cookies/cookie_store_test_helpers.cc ('K') | « net/cookies/cookie_store_test_helpers.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698