summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/base/cookie_store.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/base/cookie_store.h b/net/base/cookie_store.h
index 3fa33b9..3572d51 100644
--- a/net/base/cookie_store.h
+++ b/net/base/cookie_store.h
@@ -23,6 +23,8 @@ class CookieMonster;
// be therad safe as its methods can be accessed from IO as well as UI threads.
class CookieStore {
public:
+ virtual ~CookieStore() {}
+
// Set a single cookie. Expects a cookie line, like "a=1; domain=b.com".
virtual bool SetCookie(const GURL& url, const std::string& cookie_line) = 0;
virtual bool SetCookieWithOptions(const GURL& url,