1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_PUBLIC_BROWSER_COOKIE_STORE_FACTORY_H_
6 #define CONTENT_PUBLIC_BROWSER_COOKIE_STORE_FACTORY_H_
8 #include "content/common/content_export.h"
9 #include "net/cookies/cookie_monster.h"
16 class SpecialStoragePolicy
;
21 CONTENT_EXPORT
net::CookieStore
* CreatePersistentCookieStore(
22 const base::FilePath
& path
,
23 bool restore_old_session_cookies
,
24 quota::SpecialStoragePolicy
* storage_policy
,
25 net::CookieMonster::Delegate
* cookie_monster_delegate
);
27 } // namespace content
29 #endif // CONTENT_PUBLIC_BROWSER_COOKIE_STORE_FACTORY_H_