summaryrefslogtreecommitdiffstats
path: root/net/base/cookie_store.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/base/cookie_store.h')
-rw-r--r--net/base/cookie_store.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/base/cookie_store.h b/net/base/cookie_store.h
index e4d9b5d..1ea3fa2 100644
--- a/net/base/cookie_store.h
+++ b/net/base/cookie_store.h
@@ -59,6 +59,10 @@ class CookieStore : public base::RefCountedThreadSafe<CookieStore> {
return NULL;
};
+ // Deletes the passed in cookie for the specified URL.
+ virtual void DeleteCookie(const GURL& url,
+ const std::string& cookie_name) = 0;
+
protected:
friend class base::RefCountedThreadSafe<CookieStore>;
virtual ~CookieStore() {}