mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 6e53600d (#386251)
- Remove |accept_lang| parameter from CefJSDialogHandler::OnJSDialog and CefFormatUrlForSecurityDisplay (see https://crbug.com/336973#c36). - Remove remaining NPAPI-related code including functions from cef_web_plugin.h (see https://crbug.com/493212#c55). - Mac: 10.7+ deployment target is now required for client applications. - Mac: Remove CefBrowserHost::SetWindowVisibility (issue #1375). No replacement is required for windowed rendering. Use WasHidden for off-screen rendering. - Windows: Visual Studio 2015 Update 2 is now required when building CEF/Chromium.
This commit is contained in:
@@ -472,20 +472,18 @@ CEF_GLOBAL bool CefCreateURL(const CefURLParts& parts, CefString& url) {
|
||||
return _retval?true:false;
|
||||
}
|
||||
|
||||
CEF_GLOBAL CefString CefFormatUrlForSecurityDisplay(const CefString& origin_url,
|
||||
const CefString& languages) {
|
||||
CEF_GLOBAL CefString CefFormatUrlForSecurityDisplay(
|
||||
const CefString& origin_url) {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: origin_url; type: string_byref_const
|
||||
DCHECK(!origin_url.empty());
|
||||
if (origin_url.empty())
|
||||
return CefString();
|
||||
// Unverified params: languages
|
||||
|
||||
// Execute
|
||||
cef_string_userfree_t _retval = cef_format_url_for_security_display(
|
||||
origin_url.GetStruct(),
|
||||
languages.GetStruct());
|
||||
origin_url.GetStruct());
|
||||
|
||||
// Return type: string
|
||||
CefString _retvalStr;
|
||||
@@ -864,45 +862,6 @@ CEF_GLOBAL void CefRefreshWebPlugins() {
|
||||
cef_refresh_web_plugins();
|
||||
}
|
||||
|
||||
CEF_GLOBAL void CefAddWebPluginPath(const CefString& path) {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: path; type: string_byref_const
|
||||
DCHECK(!path.empty());
|
||||
if (path.empty())
|
||||
return;
|
||||
|
||||
// Execute
|
||||
cef_add_web_plugin_path(
|
||||
path.GetStruct());
|
||||
}
|
||||
|
||||
CEF_GLOBAL void CefAddWebPluginDirectory(const CefString& dir) {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: dir; type: string_byref_const
|
||||
DCHECK(!dir.empty());
|
||||
if (dir.empty())
|
||||
return;
|
||||
|
||||
// Execute
|
||||
cef_add_web_plugin_directory(
|
||||
dir.GetStruct());
|
||||
}
|
||||
|
||||
CEF_GLOBAL void CefRemoveWebPluginPath(const CefString& path) {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: path; type: string_byref_const
|
||||
DCHECK(!path.empty());
|
||||
if (path.empty())
|
||||
return;
|
||||
|
||||
// Execute
|
||||
cef_remove_web_plugin_path(
|
||||
path.GetStruct());
|
||||
}
|
||||
|
||||
CEF_GLOBAL void CefUnregisterInternalWebPlugin(const CefString& path) {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -916,19 +875,6 @@ CEF_GLOBAL void CefUnregisterInternalWebPlugin(const CefString& path) {
|
||||
path.GetStruct());
|
||||
}
|
||||
|
||||
CEF_GLOBAL void CefForceWebPluginShutdown(const CefString& path) {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: path; type: string_byref_const
|
||||
DCHECK(!path.empty());
|
||||
if (path.empty())
|
||||
return;
|
||||
|
||||
// Execute
|
||||
cef_force_web_plugin_shutdown(
|
||||
path.GetStruct());
|
||||
}
|
||||
|
||||
CEF_GLOBAL void CefRegisterWebPluginCrash(const CefString& path) {
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
|
Reference in New Issue
Block a user