Skip to content

Commit 2fdaa35

Browse files
committed
Upgrade to Cef 1750
1 parent 79ed1f9 commit 2fdaa35

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

CefSharp.BrowserSubprocess.Core/CefAppWrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace CefSharp
3636

3737
CefMainArgs cefMainArgs((HINSTANCE)hInstance.ToPointer());
3838

39-
return CefExecuteProcess(cefMainArgs, (CefApp*)_cefApp.get());
39+
return CefExecuteProcess(cefMainArgs, (CefApp*)_cefApp.get(), NULL);
4040
}
4141

4242
void CefAppWrapper::Bind(JavascriptRootObject^ rootObject, Func<IBrowserProcess^>^ createBrowserProxyDelegate)

CefSharp.BrowserSubprocess.Core/CefSharp.BrowserSubprocess.Core.vcxproj

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\cef.sdk.3.1650.1562-pre2\build\cef.sdk.props" Condition="Exists('..\packages\cef.sdk.3.1650.1562-pre2\build\cef.sdk.props')" />
3+
<Import Project="..\packages\cef.sdk.3.1750.1738\build\cef.sdk.props" Condition="Exists('..\packages\cef.sdk.3.1750.1738\build\cef.sdk.props')" />
44
<ItemGroup Label="ProjectConfigurations">
55
<ProjectConfiguration Include="Debug|Win32">
66
<Configuration>Debug</Configuration>
@@ -65,7 +65,9 @@
6565
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
6666
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6767
</ImportGroup>
68-
<PropertyGroup Label="UserMacros" />
68+
<PropertyGroup Label="UserMacros">
69+
<NuGetPackageImportStamp>47d3feda</NuGetPackageImportStamp>
70+
</PropertyGroup>
6971
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
7072
<LinkIncremental>true</LinkIncremental>
7173
<LinkKeyFile>..\CefSharp.snk</LinkKeyFile>
@@ -196,6 +198,6 @@
196198
<PropertyGroup>
197199
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
198200
</PropertyGroup>
199-
<Error Condition="!Exists('..\packages\cef.sdk.3.1650.1562-pre2\build\cef.sdk.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\cef.sdk.3.1650.1562-pre2\build\cef.sdk.props'))" />
201+
<Error Condition="!Exists('..\packages\cef.sdk.3.1750.1738\build\cef.sdk.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\cef.sdk.3.1750.1738\build\cef.sdk.props'))" />
200202
</Target>
201203
</Project>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="cef.sdk" version="3.1650.1562-pre2" targetFramework="Native" />
4-
</packages>
3+
<package id="cef.sdk" version="3.1750.1738" targetFramework="Native" />
4+
</packages>

0 commit comments

Comments
 (0)