diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-27 21:23:48 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-27 21:23:48 +0000 |
commit | 04bf3ad5acb81f9e932449dabd19708826774898 (patch) | |
tree | 956fda2d966a3f45ade61e61dbf1cf7ed65b0f63 /webkit/glue/webcookie.h | |
parent | 8708aa43fa34e36056f06d970dc7f1a5ebc48a87 (diff) | |
download | chromium_src-04bf3ad5acb81f9e932449dabd19708826774898.zip chromium_src-04bf3ad5acb81f9e932449dabd19708826774898.tar.gz chromium_src-04bf3ad5acb81f9e932449dabd19708826774898.tar.bz2 |
FBTF: Move code from headers into cc files.
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/3219002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57732 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webcookie.h')
-rw-r--r-- | webkit/glue/webcookie.h | 34 |
1 files changed, 4 insertions, 30 deletions
diff --git a/webkit/glue/webcookie.h b/webkit/glue/webcookie.h index e2f11e2..11411d8 100644 --- a/webkit/glue/webcookie.h +++ b/webkit/glue/webcookie.h @@ -14,38 +14,12 @@ namespace webkit_glue { struct WebCookie { - + WebCookie(); + explicit WebCookie(const net::CookieMonster::CanonicalCookie& c); WebCookie(const std::string& name, const std::string& value, const std::string& domain, const std::string& path, double expires, - bool http_only, bool secure, bool session) - : name(name), - value(value), - domain(domain), - path(path), - expires(expires), - http_only(http_only), - secure(secure), - session(session) { - } - - explicit WebCookie(const net::CookieMonster::CanonicalCookie& c) - : name(c.Name()), - value(c.Value()), - domain(c.Domain()), - path(c.Path()), - expires(c.ExpiryDate().ToDoubleT() * 1000), - http_only(c.IsHttpOnly()), - secure(c.IsSecure()), - session(!c.IsPersistent()) { - } - - // For default constructions. - WebCookie() - : expires(0), - http_only(false), - secure(false), - session(false) { - } + bool http_only, bool secure, bool session); + ~WebCookie(); // Cookie name. std::string name; |