mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2012 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_COMMON_SCHEME_REGISTRAR_IMPL_H_
 | |
| #define CEF_LIBCEF_COMMON_SCHEME_REGISTRAR_IMPL_H_
 | |
| #pragma once
 | |
| 
 | |
| #include <string>
 | |
| #include <vector>
 | |
| 
 | |
| #include "include/cef_scheme.h"
 | |
| 
 | |
| #include "content/public/common/content_client.h"
 | |
| 
 | |
| class CefSchemeRegistrarImpl : public CefSchemeRegistrar {
 | |
|  public:
 | |
|   CefSchemeRegistrarImpl();
 | |
| 
 | |
|   // CefSchemeRegistrar methods.
 | |
|   bool AddCustomScheme(const CefString& scheme_name,
 | |
|                        bool is_standard,
 | |
|                        bool is_local,
 | |
|                        bool is_display_isolated,
 | |
|                        bool is_secure,
 | |
|                        bool is_cors_enabled,
 | |
|                        bool is_csp_bypassing) override;
 | |
| 
 | |
|   void GetSchemes(content::ContentClient::Schemes* schemes);
 | |
| 
 | |
|  private:
 | |
|   content::ContentClient::Schemes schemes_;
 | |
|   std::set<std::string> registered_schemes_;
 | |
| 
 | |
|   DISALLOW_COPY_AND_ASSIGN(CefSchemeRegistrarImpl);
 | |
| };
 | |
| 
 | |
| #endif  // CEF_LIBCEF_COMMON_SCHEME_REGISTRAR_IMPL_H_
 |