cookie_store_util.h 681 B

123456789101112131415161718192021
  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. #ifndef COMPONENTS_COOKIE_CONFIG_COOKIE_STORE_UTIL_H_
  5. #define COMPONENTS_COOKIE_CONFIG_COOKIE_STORE_UTIL_H_
  6. namespace net {
  7. class CookieCryptoDelegate;
  8. } // namespace net
  9. namespace cookie_config {
  10. // Factory method for returning a CookieCryptoDelegate if one is appropriate for
  11. // this platform. The object returned is a LazyInstance. Ownership is not
  12. // transferred.
  13. net::CookieCryptoDelegate* GetCookieCryptoDelegate();
  14. } // namespace cookie_config
  15. #endif // COMPONENTS_COOKIE_CONFIG_COOKIE_STORE_UTIL_H_