You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Implement JS integration via a subset of UObject scripting functionality and custom CEF Messages JIRA: OPP-3240 rb: Justin.Sargent [CL 2601283 by Keli Hlodversson in Main branch]
21 lines
428 B
C++
21 lines
428 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "WebBrowserPrivatePCH.h"
|
|
#include "WebBrowserApp.h"
|
|
|
|
#if WITH_CEF3
|
|
FWebBrowserApp::FWebBrowserApp()
|
|
{
|
|
}
|
|
|
|
void FWebBrowserApp::OnBeforeChildProcessLaunch(CefRefPtr<CefCommandLine> CommandLine)
|
|
{
|
|
}
|
|
|
|
void FWebBrowserApp::OnRenderProcessThreadCreated(CefRefPtr<CefListValue> ExtraInfo)
|
|
{
|
|
RenderProcessThreadCreatedDelegate.ExecuteIfBound(ExtraInfo);
|
|
}
|
|
|
|
#endif
|