blob: 3a6980bbdea1da9c21f323fbe4cc108c98566b32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright (c) 2013 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 "content/common/cookie_data.h"
#include "net/cookies/canonical_cookie.h"
namespace content {
CookieData::CookieData()
: expires(0),
http_only(false),
secure(false),
session(false) {
}
CookieData::CookieData(const net::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()) {
}
CookieData::~CookieData() {
}
} // namespace content
|