summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/base/cookie_store.cc4
-rw-r--r--net/base/cookie_store.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/net/base/cookie_store.cc b/net/base/cookie_store.cc
index 4891fdf..aa03b6b 100644
--- a/net/base/cookie_store.cc
+++ b/net/base/cookie_store.cc
@@ -33,4 +33,8 @@ CookieStore::CookieStore() {}
CookieStore::~CookieStore() {}
+CookieStore::CookieInfo::CookieInfo() {}
+
+CookieStore::CookieInfo::~CookieInfo() {}
+
} // namespace net
diff --git a/net/base/cookie_store.h b/net/base/cookie_store.h
index 0d55ce4..4e5c5bb 100644
--- a/net/base/cookie_store.h
+++ b/net/base/cookie_store.h
@@ -30,6 +30,9 @@ class CookieStore : public base::RefCountedThreadSafe<CookieStore> {
// be stored with cookies; currently just MAC information, see:
// http://tools.ietf.org/html/draft-ietf-oauth-v2-http-mac
struct CookieInfo {
+ CookieInfo();
+ ~CookieInfo();
+
// The name of the cookie.
std::string name;
// TODO(abarth): Add value if any clients need it.