Skip to content

Commit

Permalink
Update CEF to 3.3029.1609.gcb50417 (Chromium 58.0.3029.81)
Browse files Browse the repository at this point in the history
  • Loading branch information
jushar committed Apr 29, 2017
1 parent 0089c3b commit 6854298
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Client/ceflauncher_DLL/CCefApp.h
Expand Up @@ -56,7 +56,7 @@ class CCefApp : public CefApp, public CefRenderProcessHandler
virtual void OnRegisterCustomSchemes ( CefRawPtr < CefSchemeRegistrar > registrar ) override
{
// Register custom MTA scheme (has to be called in all proceseses)
registrar->AddCustomScheme ( "mtalocal", false, false, false, false, false );
registrar->AddCustomScheme ( "mtalocal", false, false, false, false, false, true );
}


Expand Down
2 changes: 1 addition & 1 deletion Client/cefweb/CWebApp.cpp
Expand Up @@ -24,7 +24,7 @@ CefRefPtr<CefResourceHandler> CWebApp::HandleError(const SString& strError, unsi
void CWebApp::OnRegisterCustomSchemes(CefRawPtr<CefSchemeRegistrar> registrar)
{
// Register custom MTA scheme (has to be called in all proceseses)
registrar->AddCustomScheme("mtalocal", false, false, false, false, false);
registrar->AddCustomScheme("mtalocal", false, false, false, false, false, true);
}

void CWebApp::OnBeforeCommandLineProcessing(const CefString& process_type, CefRefPtr<CefCommandLine> command_line)
Expand Down

0 comments on commit 6854298

Please sign in to comment.