Files
UnrealEngineUWP/Engine/Source/Runtime/WebBrowser/Private/WebBrowserApp.cpp
Keli Hlodversson e2b03ba393 Merging CL#2601171 using UE4-To-UE4-LauncherDev:
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]
2015-06-25 16:56:38 -04:00

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