blob: a806d6c5bfdd2aae22fd7c8a347bad41c91de595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (c) 2011 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 "net/base/cookie_store.h"
#include "net/base/cookie_options.h"
namespace net {
CookieStore::CookieStore() {}
CookieStore::~CookieStore() {}
CookieStore::CookieInfo::CookieInfo() {}
CookieStore::CookieInfo::~CookieInfo() {}
} // namespace net
|