mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			86 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2015 The Chromium Embedded Framework Authors. All rights
 | |
| // reserved. Use of this source code is governed by a BSD-style license that can
 | |
| // be found in the LICENSE file.
 | |
| 
 | |
| #ifndef CEF_LIBCEF_BROWSER_COOKIE_STORE_PROXY_H_
 | |
| #define CEF_LIBCEF_BROWSER_COOKIE_STORE_PROXY_H_
 | |
| #pragma once
 | |
| 
 | |
| #include "include/cef_request_context_handler.h"
 | |
| 
 | |
| #include "net/cookies/cookie_store.h"
 | |
| 
 | |
| class CefURLRequestContextImpl;
 | |
| 
 | |
| // Proxies cookie requests to the CefRequestContextHandler or global cookie
 | |
| // store. Life span is controlled by CefURLRequestContextProxy. Only accessed on
 | |
| // the IO thread. See browser_context.h for an object relationship diagram.
 | |
| class CefCookieStoreProxy : public net::CookieStore {
 | |
|  public:
 | |
|   CefCookieStoreProxy(CefURLRequestContextImpl* parent,
 | |
|                       CefRefPtr<CefRequestContextHandler> handler);
 | |
|   ~CefCookieStoreProxy() override;
 | |
| 
 | |
|   // net::CookieStore methods.
 | |
|   void SetCookieWithOptionsAsync(const GURL& url,
 | |
|                                  const std::string& cookie_line,
 | |
|                                  const net::CookieOptions& options,
 | |
|                                  SetCookiesCallback callback) override;
 | |
|   void SetCookieWithDetailsAsync(const GURL& url,
 | |
|                                  const std::string& name,
 | |
|                                  const std::string& value,
 | |
|                                  const std::string& domain,
 | |
|                                  const std::string& path,
 | |
|                                  base::Time creation_time,
 | |
|                                  base::Time expiration_time,
 | |
|                                  base::Time last_access_time,
 | |
|                                  bool secure,
 | |
|                                  bool http_only,
 | |
|                                  net::CookieSameSite same_site,
 | |
|                                  net::CookiePriority priority,
 | |
|                                  SetCookiesCallback callback) override;
 | |
|   void SetCanonicalCookieAsync(std::unique_ptr<net::CanonicalCookie> cookie,
 | |
|                                bool secure_source,
 | |
|                                bool modify_http_only,
 | |
|                                SetCookiesCallback callback) override;
 | |
|   void GetCookiesWithOptionsAsync(const GURL& url,
 | |
|                                   const net::CookieOptions& options,
 | |
|                                   GetCookiesCallback callback) override;
 | |
|   void GetCookieListWithOptionsAsync(const GURL& url,
 | |
|                                      const net::CookieOptions& options,
 | |
|                                      GetCookieListCallback callback) override;
 | |
|   void GetAllCookiesAsync(GetCookieListCallback callback) override;
 | |
|   void DeleteCookieAsync(const GURL& url,
 | |
|                          const std::string& cookie_name,
 | |
|                          base::OnceClosure callback) override;
 | |
|   void DeleteCanonicalCookieAsync(const net::CanonicalCookie& cookie,
 | |
|                                   DeleteCallback callback) override;
 | |
|   void DeleteAllCreatedBetweenAsync(const base::Time& delete_begin,
 | |
|                                     const base::Time& delete_end,
 | |
|                                     DeleteCallback callback) override;
 | |
|   void DeleteAllCreatedBetweenWithPredicateAsync(
 | |
|       const base::Time& delete_begin,
 | |
|       const base::Time& delete_end,
 | |
|       const CookiePredicate& predicate,
 | |
|       DeleteCallback callback) override;
 | |
|   void DeleteSessionCookiesAsync(DeleteCallback callback) override;
 | |
|   void FlushStore(base::OnceClosure callback) override;
 | |
|   std::unique_ptr<CookieChangedSubscription> AddCallbackForCookie(
 | |
|       const GURL& url,
 | |
|       const std::string& name,
 | |
|       const CookieChangedCallback& callback) override;
 | |
|   bool IsEphemeral() override;
 | |
| 
 | |
|  private:
 | |
|   net::CookieStore* GetCookieStore();
 | |
| 
 | |
|   // The |parent_| pointer is kept alive by CefURLRequestContextGetterProxy
 | |
|   // which has a ref to the owning CefURLRequestContextGetterImpl.
 | |
|   CefURLRequestContextImpl* parent_;
 | |
|   CefRefPtr<CefRequestContextHandler> handler_;
 | |
| 
 | |
|   DISALLOW_COPY_AND_ASSIGN(CefCookieStoreProxy);
 | |
| };
 | |
| 
 | |
| #endif  // CEF_LIBCEF_BROWSER_COOKIE_STORE_PROXY_H_
 |