summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-12 22:34:34 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-12 22:34:34 +0000
commit130dee6eb86395c0541a342c8e0c7cf47e8b9b07 (patch)
treee0fafb3d19b54594b17a7d10817f78bd63f0696c /net
parent34a160dad4c51a0b16263a91722865a5a92df2eb (diff)
downloadchromium_src-130dee6eb86395c0541a342c8e0c7cf47e8b9b07.zip
chromium_src-130dee6eb86395c0541a342c8e0c7cf47e8b9b07.tar.gz
chromium_src-130dee6eb86395c0541a342c8e0c7cf47e8b9b07.tar.bz2
Attempt to fix the magical clang build.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85201 0039d316-1c4b-4281-b951-d872f2087c98
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.