mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	- Simplify usage of OnBeforePluginLoad (issue #2015) - Switch crash reporting from crashpad to breakpad on Windows and OS X. Adds a new chrome_elf.dll dependency on Windows (issue #1995) - Remove CefTextfield::GetPlaceholderTextColor() method which is no longer supported by Chromium.
		
			
				
	
	
		
			62 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2016 The Chromium Authors. All rights reserved.
 | |
| // Use of this source code is governed by a BSD-style license that can be
 | |
| // found in the LICENSE file.
 | |
| 
 | |
| // APIs must also be registered in
 | |
| // libcef/common/extensions/api/_*_features.json files. See
 | |
| // libcef/common/extensions/api/README.txt for additional details.
 | |
| 
 | |
| #include "libcef/browser/extensions/chrome_api_registration.h"
 | |
| 
 | |
| #include "libcef/browser/extensions/api/tabs/tabs_api.h"
 | |
| 
 | |
| #include "chrome/browser/extensions/api/resources_private/resources_private_api.h"
 | |
| #include "chrome/browser/extensions/api/streams_private/streams_private_api.h"
 | |
| #include "extensions/browser/extension_function_registry.h"
 | |
| 
 | |
| namespace extensions {
 | |
| namespace api {
 | |
| namespace cef {
 | |
| 
 | |
| namespace cefimpl = extensions::cef;
 | |
| 
 | |
| #define EXTENSION_FUNCTION_NAME(classname) classname::function_name()
 | |
| 
 | |
| // Only add APIs to this list that have been tested in CEF.
 | |
| // static
 | |
| bool ChromeFunctionRegistry::IsSupported(const std::string& name) {
 | |
|   static const char* const supported_apis[] = {
 | |
|     "resourcesPrivate",
 | |
|     EXTENSION_FUNCTION_NAME(ResourcesPrivateGetStringsFunction),
 | |
|     "streamsPrivate",
 | |
|     EXTENSION_FUNCTION_NAME(StreamsPrivateAbortFunction),
 | |
|     "tabs",
 | |
|     EXTENSION_FUNCTION_NAME(cefimpl::TabsGetFunction),
 | |
|     EXTENSION_FUNCTION_NAME(cefimpl::TabsSetZoomFunction),
 | |
|     EXTENSION_FUNCTION_NAME(cefimpl::TabsGetZoomFunction),
 | |
|     EXTENSION_FUNCTION_NAME(cefimpl::TabsSetZoomSettingsFunction),
 | |
|     EXTENSION_FUNCTION_NAME(cefimpl::TabsGetZoomSettingsFunction),
 | |
|   };
 | |
|   for (size_t i = 0; i < arraysize(supported_apis); ++i) {
 | |
|     if (name == supported_apis[i])
 | |
|       return true;
 | |
|   }
 | |
|   return false;
 | |
| }
 | |
| 
 | |
| // Only add APIs to this list that have been tested in CEF.
 | |
| // static
 | |
| void ChromeFunctionRegistry::RegisterAll(ExtensionFunctionRegistry* registry) {
 | |
|   registry->RegisterFunction<ResourcesPrivateGetStringsFunction>();
 | |
|   registry->RegisterFunction<StreamsPrivateAbortFunction>();
 | |
|   registry->RegisterFunction<cefimpl::TabsGetFunction>();
 | |
|   registry->RegisterFunction<cefimpl::TabsSetZoomFunction>();
 | |
|   registry->RegisterFunction<cefimpl::TabsGetZoomFunction>();
 | |
|   registry->RegisterFunction<cefimpl::TabsSetZoomSettingsFunction>();
 | |
|   registry->RegisterFunction<cefimpl::TabsGetZoomSettingsFunction>();
 | |
| }
 | |
| 
 | |
| }  // namespace cef
 | |
| }  // namespace api
 | |
| }  // namespace extensions
 |