diff options
author | battre@chromium.org <battre@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-18 13:13:34 +0000 |
---|---|---|
committer | battre@chromium.org <battre@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-18 13:13:34 +0000 |
commit | 5b9bc3505d5cd23898d0bdb350f33956070cc3a6 (patch) | |
tree | 2e28070459f0324ce2dd9288e803f8aa095781fd /webkit/glue/webcookie.cc | |
parent | 64c186bdf8949a84c1b1e53da12710f50e51336b (diff) | |
download | chromium_src-5b9bc3505d5cd23898d0bdb350f33956070cc3a6.zip chromium_src-5b9bc3505d5cd23898d0bdb350f33956070cc3a6.tar.gz chromium_src-5b9bc3505d5cd23898d0bdb350f33956070cc3a6.tar.bz2 |
Move CanonicalCookie into separate files
BUG=137014,112155
TEST=no
TBR=sky@chromium.org, erg@chromium.org, tony@chromium.org, eroman@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10785017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147222 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webcookie.cc')
-rw-r--r-- | webkit/glue/webcookie.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/glue/webcookie.cc b/webkit/glue/webcookie.cc index cb255bd..e5af921 100644 --- a/webkit/glue/webcookie.cc +++ b/webkit/glue/webcookie.cc @@ -1,9 +1,11 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "webkit/glue/webcookie.h" +#include "net/cookies/canonical_cookie.h" + namespace webkit_glue { WebCookie::WebCookie() @@ -13,7 +15,7 @@ WebCookie::WebCookie() session(false) { } -WebCookie::WebCookie(const net::CookieMonster::CanonicalCookie& c) +WebCookie::WebCookie(const net::CanonicalCookie& c) : name(c.Name()), value(c.Value()), domain(c.Domain()), |