| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 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. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_NET_COOKIE_STORE_UTIL_H_ | |
| 6 #define CHROME_BROWSER_NET_COOKIE_STORE_UTIL_H_ | |
| 7 | |
| 8 #include "base/memory/ref_counted.h" | |
| 9 #include "content/public/browser/browser_context.h" | |
| 10 #include "content/public/browser/cookie_store_factory.h" | |
| 11 | |
| 12 class Profile; | |
| 13 | |
| 14 namespace net { | |
| 15 class CookieMonsterDelegate; | |
| 16 } // namespace net | |
| 17 | |
| 18 namespace chrome_browser_net { | |
| 19 | |
| 20 // Factory method for returning a CookieCryptoDelegate if one is appropriate for | |
| 21 // this platform. The object returned is a LazyInstance. Ownership is not | |
| 22 // transferred. | |
| 23 net::CookieCryptoDelegate* GetCookieCryptoDelegate(); | |
| 24 | |
| 25 } // namespace chrome_browser_net | |
| 26 | |
| 27 #endif // CHROME_BROWSER_NET_COOKIE_STORE_UTIL_H_ | |
| OLD | NEW |