Files
UnrealEngineUWP/Engine/Source/Runtime/Online/HTTP/Private/HTML5/HTML5PlatformHttp.cpp
Ankit Khare 7a5cd45172 Github Pull Request : 345 Feature: Implement a basic HTTP request support for the HTML5 platform
#codereview james.moran

[CL 2321802 by Ankit Khare in Main branch]
2014-10-07 16:49:35 -04:00

21 lines
315 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#include "HttpPrivatePCH.h"
#include "HTML5PlatformHttp.h"
#include "HTML5Http.h"
void FHTML5PlatformHttp::Init()
{
}
void FHTML5PlatformHttp::Shutdown()
{
}
IHttpRequest* FHTML5PlatformHttp::ConstructRequest()
{
return new FHTML5HttpRequest();
}