Skip to content

Commit d350cad

Browse files
authored
Update to M93 (#3781)
* Upgrade to CEF 93.1.7+g9117d6a+chromium-93.0.4577.42 / Chromium 93.0.4577.42 - Core - Add basic ref counting implementation IMPLEMENT_REFCOUNTING implementation uses atomic which forces the VC++ compiler to compile as native which doesn't work for our managed ref classes. - Use InterlockedCompareExchange for custom ref count reads - Use InterlockedIncrement/InterlockedDecrement directly - There's no memory barrier for HasOneRef/HasAtLeastOneRef as the read of a LONG should happen in one operation on 32/64 bit architectures (at least that's my understanding at this point in time). References: https://github.com/chromiumembedded/cef/blob/4472/include/base/internal/cef_atomicops_x86_msvc.h#L125 https://github.com/chromiumembedded/cef/blob/4472/include/base/internal/cef_atomicops_arm64_msvc.h#L107 https://github.com/chromiumembedded/cef/blob/4472/include/base/cef_atomic_ref_count.h#L114 https://github.com/chromiumembedded/cef/blob/4472/include/cef_base.h#L91 - Remove Microsoft.Net.Compilers package from projects Now that we require a min of VS2019 to build there's no need for a custom compiler package - Start removing VS2015/VC++2015 references - Remove RegisterWidevineCdm This is a breaking change. CEF will now automatically download the Widevine CDM component Resolves #3767 - RequestContext.LoadExtension now uses managed to code spawn on CEF UI Thread Avoid having to use cef_callback.h which was causing problems for x86 builds
1 parent 5d14f7c commit d350cad

File tree

95 files changed

+276
-521
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+276
-521
lines changed

CefSharp.BrowserSubprocess.Core/Async/JavascriptAsyncMethodHandler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace CefSharp
3838
_methodCallbackSave = nullptr;
3939
}
4040

41-
IMPLEMENT_REFCOUNTING(JavascriptAsyncMethodHandler);
41+
IMPLEMENT_REFCOUNTINGM(JavascriptAsyncMethodHandler);
4242
};
4343
}
4444
}

CefSharp.BrowserSubprocess.Core/BindObjectAsyncHandler.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,7 @@ namespace CefSharp
321321
return false;
322322
}
323323

324-
325-
IMPLEMENT_REFCOUNTING(BindObjectAsyncHandler);
324+
IMPLEMENT_REFCOUNTINGM(BindObjectAsyncHandler);
326325
};
327326
}
328327
}

CefSharp.BrowserSubprocess.Core/CefAppUnmanagedWrapper.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ namespace CefSharp
8484
virtual DECL void OnFocusedNodeChanged(CefRefPtr<CefBrowser> browser, CefRefPtr<CefFrame> frame, CefRefPtr<CefDOMNode> node) override;
8585
virtual DECL void OnUncaughtException(CefRefPtr<CefBrowser> browser, CefRefPtr<CefFrame> frame, CefRefPtr<CefV8Context> context, CefRefPtr<CefV8Exception> exception, CefRefPtr<CefV8StackTrace> stackTrace) override;
8686

87-
IMPLEMENT_REFCOUNTING(CefAppUnmanagedWrapper);
87+
IMPLEMENT_REFCOUNTINGM(CefAppUnmanagedWrapper);
8888
};
8989
}
9090
}

CefSharp.BrowserSubprocess.Core/CefBrowserWrapper.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace CefSharp
3636
public:
3737
CefBrowserWrapper(CefRefPtr<CefBrowser> cefBrowser)
3838
{
39-
_cefBrowser = cefBrowser;
39+
_cefBrowser = cefBrowser.get();
4040
BrowserId = cefBrowser->GetIdentifier();
4141
IsPopup = cefBrowser->IsPopup();
4242

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\cef.sdk.92.0.25\build\cef.sdk.props" Condition="Exists('..\packages\cef.sdk.92.0.25\build\cef.sdk.props')" />
3+
<Import Project="..\packages\cef.sdk.93.1.7\build\cef.sdk.props" Condition="Exists('..\packages\cef.sdk.93.1.7\build\cef.sdk.props')" />
44
<Import Project="..\packages\Microsoft.SourceLink.GitHub.1.0.0\build\Microsoft.SourceLink.GitHub.props" Condition="Exists('..\packages\Microsoft.SourceLink.GitHub.1.0.0\build\Microsoft.SourceLink.GitHub.props')" />
55
<Import Project="..\packages\Microsoft.SourceLink.Common.1.0.0\build\Microsoft.SourceLink.Common.props" Condition="Exists('..\packages\Microsoft.SourceLink.Common.1.0.0\build\Microsoft.SourceLink.Common.props')" />
66
<Import Project="..\packages\Microsoft.Build.Tasks.Git.1.0.0\build\Microsoft.Build.Tasks.Git.props" Condition="Exists('..\packages\Microsoft.Build.Tasks.Git.1.0.0\build\Microsoft.Build.Tasks.Git.props')" />
@@ -37,6 +37,7 @@
3737
<RootNamespace>CefSharpBrowserSubprocessCore</RootNamespace>
3838
<Keyword>NetCoreCProj</Keyword>
3939
<TargetFramework>netcoreapp3.1</TargetFramework>
40+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
4041
</PropertyGroup>
4142
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
4243
<Import Project="..\CefSharp.props" />
@@ -254,12 +255,14 @@
254255
</Manifest>
255256
</ItemDefinitionGroup>
256257
<ItemGroup>
258+
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\CefRefCountManaged.h" />
257259
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\MCefRefPtr.h" />
258260
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\ReportUnhandledExceptions.h" />
259261
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\Serialization\ObjectsSerialization.h" />
260262
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\Serialization\Primitives.h" />
261263
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\StringUtils.h" />
262264
<ClInclude Include="BindObjectAsyncHandler.h" />
265+
<ClCompile Include="..\CefSharp.Core.Runtime\Internals\CefRefCountManaged.cpp" />
263266
<ClCompile Include="BrowserSubprocessExecutable.h" />
264267
<ClInclude Include="Cef.h" />
265268
<ClInclude Include="JavascriptRootObjectWrapper.h" />

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

+4-1
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="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\cef.sdk.92.0.25\build\cef.sdk.props" Condition="Exists('..\packages\cef.sdk.92.0.25\build\cef.sdk.props')" />
3+
<Import Project="..\packages\cef.sdk.93.1.7\build\cef.sdk.props" Condition="Exists('..\packages\cef.sdk.93.1.7\build\cef.sdk.props')" />
44
<Import Project="..\packages\GitLink.3.1.0\build\GitLink.props" Condition="Exists('..\packages\GitLink.3.1.0\build\GitLink.props')" />
55
<ItemGroup Label="ProjectConfigurations">
66
<ProjectConfiguration Include="Debug|Win32">
@@ -25,6 +25,7 @@
2525
<Keyword>ManagedCProj</Keyword>
2626
<RootNamespace>CefSharpBrowserSubprocessCore</RootNamespace>
2727
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
28+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
2829
</PropertyGroup>
2930
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
3031
<Import Project="..\CefSharp.props" />
@@ -168,11 +169,13 @@
168169
<Reference Include="System.ServiceModel" />
169170
</ItemGroup>
170171
<ItemGroup>
172+
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\CefRefCountManaged.h" />
171173
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\MCefRefPtr.h" />
172174
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\Serialization\ObjectsSerialization.h" />
173175
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\Serialization\Primitives.h" />
174176
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\StringUtils.h" />
175177
<ClInclude Include="BindObjectAsyncHandler.h" />
178+
<ClCompile Include="..\CefSharp.Core.Runtime\Internals\CefRefCountManaged.cpp" />
176179
<ClCompile Include="BrowserSubprocessExecutable.h" />
177180
<ClInclude Include="Cef.h" />
178181
<ClInclude Include="JavascriptPromiseHandler.h" />

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

+6
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@
119119
<ClInclude Include="JavascriptPromiseHandler.h">
120120
<Filter>Header Files</Filter>
121121
</ClInclude>
122+
<ClInclude Include="..\CefSharp.Core.Runtime\Internals\CefRefCountManaged.h">
123+
<Filter>Header Files</Filter>
124+
</ClInclude>
122125
</ItemGroup>
123126
<ItemGroup>
124127
<ClCompile Include="AssemblyInfo.cpp">
@@ -190,6 +193,9 @@
190193
<ClCompile Include="BrowserSubprocessExecutable.h">
191194
<Filter>Header Files</Filter>
192195
</ClCompile>
196+
<ClCompile Include="..\CefSharp.Core.Runtime\Internals\CefRefCountManaged.cpp">
197+
<Filter>Source Files</Filter>
198+
</ClCompile>
193199
</ItemGroup>
194200
<ItemGroup>
195201
<ResourceCompile Include="Resource.rc" />

CefSharp.BrowserSubprocess.Core/JavascriptMethodHandler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace CefSharp
3838

3939
CefRefPtr<CefV8Value> ConvertToCefObject(Object^ obj);
4040

41-
IMPLEMENT_REFCOUNTING(JavascriptMethodHandler);
41+
IMPLEMENT_REFCOUNTINGM(JavascriptMethodHandler);
4242
};
4343
}
4444
}

CefSharp.BrowserSubprocess.Core/JavascriptPostMessageHandler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ namespace CefSharp
8686
return true;
8787
}
8888

89-
IMPLEMENT_REFCOUNTING(JavascriptPostMessageHandler);
89+
IMPLEMENT_REFCOUNTINGM(JavascriptPostMessageHandler);
9090
};
9191
}
9292
}

CefSharp.BrowserSubprocess.Core/JavascriptPromiseHandler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ namespace CefSharp
8383
return false;
8484
}
8585

86-
IMPLEMENT_REFCOUNTING(JavascriptPromiseHandler);
86+
IMPLEMENT_REFCOUNTINGM(JavascriptPromiseHandler);
8787
};
8888
}
8989
}

CefSharp.BrowserSubprocess.Core/JavascriptPropertyHandler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ namespace CefSharp
6262
return true;
6363
}
6464

65-
IMPLEMENT_REFCOUNTING(JavascriptPropertyHandler);
65+
IMPLEMENT_REFCOUNTINGM(JavascriptPropertyHandler);
6666
};
6767
}
6868
}

CefSharp.BrowserSubprocess.Core/RegisterBoundObjectHandler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ namespace CefSharp
122122
return true;
123123
}
124124

125-
IMPLEMENT_REFCOUNTING(RegisterBoundObjectHandler);
125+
IMPLEMENT_REFCOUNTINGM(RegisterBoundObjectHandler);
126126
};
127127
}
128128
}

CefSharp.BrowserSubprocess.Core/Stdafx.h

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
#include <include/cef_base.h>
1616

17+
#include ".\..\CefSharp.Core.Runtime\Internals\CefRefCountManaged.h"
1718
#include ".\..\CefSharp.Core.Runtime\Internals\MCefRefPtr.h"
1819
#include ".\..\CefSharp.Core.Runtime\Internals\StringUtils.h"
1920
#include "vcclr_local.h"

CefSharp.BrowserSubprocess.Core/SubProcessApp.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ namespace CefSharp
4444
}
4545
}
4646

47-
IMPLEMENT_REFCOUNTING(SubProcessApp);
47+
IMPLEMENT_REFCOUNTINGM(SubProcessApp);
4848
};
4949
}
5050
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="cef.sdk" version="92.0.25" targetFramework="native" />
3+
<package id="cef.sdk" version="93.1.7" targetFramework="native" />
44
<package id="GitLink" version="3.1.0" targetFramework="native" developmentDependency="true" />
55
</packages>

CefSharp.BrowserSubprocess.Core/packages.CefSharp.BrowserSubprocess.Core.netcore.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="cef.sdk" version="92.0.25" targetFramework="netcoreapp3.1" />
3+
<package id="cef.sdk" version="93.1.7" targetFramework="netcoreapp3.1" />
44
<package id="Microsoft.Build.Tasks.Git" version="1.0.0" targetFramework="native" developmentDependency="true" />
55
<package id="Microsoft.SourceLink.Common" version="1.0.0" targetFramework="native" developmentDependency="true" />
66
<package id="Microsoft.SourceLink.GitHub" version="1.0.0" targetFramework="native" developmentDependency="true" />

CefSharp.Core.Runtime.RefAssembly/CefSharp.Core.Runtime.netcore.cs

-2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ public static void EnableWaitForBrowsersToClose() { }
8787
public static void PreShutdown() { }
8888
public static void QuitMessageLoop() { }
8989
public static void RefreshWebPlugins() { }
90-
public static void RegisterWidevineCdm(string path, CefSharp.IRegisterCdmCallback callback) { }
91-
public static System.Threading.Tasks.Task<CefSharp.CdmRegistration> RegisterWidevineCdmAsync(string path) { throw null; }
9290
public static bool RemoveCrossOriginWhitelistEntry(string sourceOrigin, string targetProtocol, string targetDomain, bool allowTargetSubdomains) { throw null; }
9391
public static void RemoveDisposable(System.IDisposable item) { }
9492
public static void RunMessageLoop() { }

CefSharp.Core.Runtime/Cef.h

-70
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#include "Internals/CefSharpApp.h"
2222
#include "Internals/CefWebPluginInfoVisitorAdapter.h"
2323
#include "Internals/CefTaskScheduler.h"
24-
#include "Internals/CefRegisterCdmCallbackAdapter.h"
2524
#include "CookieManager.h"
2625
#include "CefSettingsBase.h"
2726
#include "RequestContext.h"
@@ -773,75 +772,6 @@ namespace CefSharp
773772
return cef_get_min_log_level();
774773
}
775774

776-
/// <summary>
777-
/// Register the Widevine CDM plugin.
778-
///
779-
/// The client application is responsible for downloading an appropriate
780-
/// platform-specific CDM binary distribution from Google, extracting the
781-
/// contents, and building the required directory structure on the local machine.
782-
/// The <see cref="CefSharp::IBrowserHost::StartDownload"/> method class can be used
783-
/// to implement this functionality in CefSharp. Contact Google via
784-
/// https://www.widevine.com/contact.html for details on CDM download.
785-
///
786-
///
787-
/// path is a directory that must contain the following files:
788-
/// 1. manifest.json file from the CDM binary distribution (see below).
789-
/// 2. widevinecdm file from the CDM binary distribution (e.g.
790-
/// widevinecdm.dll on Windows).
791-
/// 3. widevidecdmadapter file from the CEF binary distribution (e.g.
792-
/// widevinecdmadapter.dll on Windows).
793-
///
794-
/// If any of these files are missing or if the manifest file has incorrect
795-
/// contents the registration will fail and callback will receive an ErrorCode
796-
/// value of <see cref="CefSharp::CdmRegistrationErrorCode::IncorrectContents"/>.
797-
///
798-
/// The manifest.json file must contain the following keys:
799-
/// A. "os": Supported OS (e.g. "mac", "win" or "linux").
800-
/// B. "arch": Supported architecture (e.g. "ia32" or "x64").
801-
/// C. "x-cdm-module-versions": Module API version (e.g. "4").
802-
/// D. "x-cdm-interface-versions": Interface API version (e.g. "8").
803-
/// E. "x-cdm-host-versions": Host API version (e.g. "8").
804-
/// F. "version": CDM version (e.g. "1.4.8.903").
805-
/// G. "x-cdm-codecs": List of supported codecs (e.g. "vp8,vp9.0,avc1").
806-
///
807-
/// A through E are used to verify compatibility with the current Chromium
808-
/// version. If the CDM is not compatible the registration will fail and
809-
/// callback will receive an ErrorCode value of <see cref="CdmRegistrationErrorCode::Incompatible"/>.
810-
///
811-
/// If registration is not supported at the time that Cef.RegisterWidevineCdm() is called then callback
812-
/// will receive an ErrorCode value of <see cref="CdmRegistrationErrorCode::NotSupported"/>.
813-
/// </summary>
814-
/// <param name="path"> is a directory that contains the Widevine CDM files</param>
815-
/// <param name="callback">optional callback - <see cref="IRegisterCdmCallback::OnRegistrationComplete"/>
816-
/// will be executed asynchronously once registration is complete</param>
817-
static void RegisterWidevineCdm(String^ path, [Optional] IRegisterCdmCallback^ callback)
818-
{
819-
CefRefPtr<CefRegisterCdmCallbackAdapter> adapter = nullptr;
820-
821-
if (callback != nullptr)
822-
{
823-
adapter = new CefRegisterCdmCallbackAdapter(callback);
824-
}
825-
826-
CefRegisterWidevineCdm(StringUtils::ToNative(path), adapter);
827-
}
828-
829-
/// <summary>
830-
/// Register the Widevine CDM plugin.
831-
///
832-
/// See <see cref="RegisterWidevineCdm(String, IRegisterCdmCallback)"/> for more details.
833-
/// </summary>
834-
/// <param name="path"> is a directory that contains the Widevine CDM files</param>
835-
/// <returns>Returns a Task that can be awaited to receive the <see cref="CdmRegistration"/> response.</returns>
836-
static Task<CdmRegistration^>^ RegisterWidevineCdmAsync(String^ path)
837-
{
838-
auto callback = gcnew TaskRegisterCdmCallback();
839-
840-
RegisterWidevineCdm(path, callback);
841-
842-
return callback->Task;
843-
}
844-
845775
/// <summary>
846776
/// Returns the mime type for the specified file extension or an empty string if unknown.
847777
/// </summary>

CefSharp.Core.Runtime/CefSharp.Core.Runtime.netcore.vcxproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\cef.sdk.92.0.25\build\cef.sdk.props" Condition="Exists('..\packages\cef.sdk.92.0.25\build\cef.sdk.props')" />
3+
<Import Project="..\packages\cef.sdk.93.1.7\build\cef.sdk.props" Condition="Exists('..\packages\cef.sdk.93.1.7\build\cef.sdk.props')" />
44
<Import Project="..\packages\Microsoft.SourceLink.GitHub.1.0.0\build\Microsoft.SourceLink.GitHub.props" Condition="Exists('..\packages\Microsoft.SourceLink.GitHub.1.0.0\build\Microsoft.SourceLink.GitHub.props')" />
55
<Import Project="..\packages\Microsoft.SourceLink.Common.1.0.0\build\Microsoft.SourceLink.Common.props" Condition="Exists('..\packages\Microsoft.SourceLink.Common.1.0.0\build\Microsoft.SourceLink.Common.props')" />
66
<Import Project="..\packages\Microsoft.Build.Tasks.Git.1.0.0\build\Microsoft.Build.Tasks.Git.props" Condition="Exists('..\packages\Microsoft.Build.Tasks.Git.1.0.0\build\Microsoft.Build.Tasks.Git.props')" />
@@ -332,6 +332,7 @@
332332
<ClCompile Include="Internals\CefExtensionWrapper.cpp" />
333333
<ClCompile Include="Internals\CefFrameWrapper.cpp" />
334334
<ClCompile Include="Internals\CefBrowserWrapper.cpp" />
335+
<ClCompile Include="Internals\CefRefCountManaged.cpp" />
335336
<ClCompile Include="Internals\CefUrlRequestClientAdapter.cpp" />
336337
<ClCompile Include="Internals\CefValueWrapper.cpp" />
337338
<ClCompile Include="Internals\ClientAdapter.cpp" />
@@ -361,6 +362,7 @@
361362
<ClInclude Include="BrowserSettings.h" />
362363
<ClInclude Include="Cef.h" />
363364
<ClInclude Include="Internals\CefDevToolsMessageObserverAdapter.h" />
365+
<ClInclude Include="Internals\CefRefCountManaged.h" />
364366
<ClInclude Include="Internals\CefRegistrationWrapper.h" />
365367
<ClInclude Include="Internals\CefResourceReadCallbackWrapper.h" />
366368
<ClInclude Include="Internals\CefCookieAccessFilterAdapter.h" />
@@ -391,7 +393,6 @@
391393
<ClInclude Include="Internals\CefFrameWrapper.h" />
392394
<ClInclude Include="Internals\CefMenuModelWrapper.h" />
393395
<ClInclude Include="Internals\CefPdfPrintCallbackWrapper.h" />
394-
<ClInclude Include="Internals\CefRegisterCdmCallbackAdapter.h" />
395396
<ClInclude Include="Internals\CefResolveCallbackAdapter.h" />
396397
<ClInclude Include="Internals\CefResponseFilterAdapter.h" />
397398
<ClInclude Include="Internals\CefResponseWrapper.h" />

CefSharp.Core.Runtime/CefSharp.Core.Runtime.netcore.vcxproj.filters

+6-3
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@
8383
<ClCompile Include="Internals\CefResourceHandlerAdapter.cpp">
8484
<Filter>Source Files</Filter>
8585
</ClCompile>
86+
<ClCompile Include="Internals\CefRefCountManaged.cpp">
87+
<Filter>Source Files</Filter>
88+
</ClCompile>
8689
</ItemGroup>
8790
<ItemGroup>
8891
<ClInclude Include="vcclr_local.h">
@@ -232,9 +235,6 @@
232235
<ClInclude Include="Internals\CefCertificateCallbackWrapper.h">
233236
<Filter>Header Files</Filter>
234237
</ClInclude>
235-
<ClInclude Include="Internals\CefRegisterCdmCallbackAdapter.h">
236-
<Filter>Header Files</Filter>
237-
</ClInclude>
238238
<ClInclude Include="Internals\CefSetCookieCallbackAdapter.h">
239239
<Filter>Header Files</Filter>
240240
</ClInclude>
@@ -328,6 +328,9 @@
328328
<ClInclude Include="DragData.h">
329329
<Filter>Header Files</Filter>
330330
</ClInclude>
331+
<ClInclude Include="Internals\CefRefCountManaged.h">
332+
<Filter>Header Files</Filter>
333+
</ClInclude>
331334
</ItemGroup>
332335
<ItemGroup>
333336
<ClInclude Include="Internals\CefFrameWrapper.h">

CefSharp.Core.Runtime/CefSharp.Core.Runtime.vcxproj

+3-2
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="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\cef.sdk.92.0.25\build\cef.sdk.props" Condition="Exists('..\packages\cef.sdk.92.0.25\build\cef.sdk.props')" />
3+
<Import Project="..\packages\cef.sdk.93.1.7\build\cef.sdk.props" Condition="Exists('..\packages\cef.sdk.93.1.7\build\cef.sdk.props')" />
44
<Import Project="..\packages\GitLink.3.1.0\build\GitLink.props" Condition="Exists('..\packages\GitLink.3.1.0\build\GitLink.props')" />
55
<ItemGroup Label="ProjectConfigurations">
66
<ProjectConfiguration Include="Debug|Win32">
@@ -236,6 +236,7 @@
236236
<ClCompile Include="Internals\CefExtensionWrapper.cpp" />
237237
<ClCompile Include="Internals\CefFrameWrapper.cpp" />
238238
<ClCompile Include="Internals\CefBrowserWrapper.cpp" />
239+
<ClCompile Include="Internals\CefRefCountManaged.cpp" />
239240
<ClCompile Include="Internals\CefUrlRequestClientAdapter.cpp" />
240241
<ClCompile Include="Internals\CefValueWrapper.cpp" />
241242
<ClCompile Include="Internals\ClientAdapter.cpp" />
@@ -264,6 +265,7 @@
264265
<ClInclude Include="Cef.h" />
265266
<ClInclude Include="DragData.h" />
266267
<ClInclude Include="Internals\CefDevToolsMessageObserverAdapter.h" />
268+
<ClInclude Include="Internals\CefRefCountManaged.h" />
267269
<ClInclude Include="Internals\CefRegistrationWrapper.h" />
268270
<ClInclude Include="Internals\CefResourceReadCallbackWrapper.h" />
269271
<ClInclude Include="Internals\CefCookieAccessFilterAdapter.h" />
@@ -293,7 +295,6 @@
293295
<ClInclude Include="Internals\CefFrameWrapper.h" />
294296
<ClInclude Include="Internals\CefMenuModelWrapper.h" />
295297
<ClInclude Include="Internals\CefPdfPrintCallbackWrapper.h" />
296-
<ClInclude Include="Internals\CefRegisterCdmCallbackAdapter.h" />
297298
<ClInclude Include="Internals\CefResolveCallbackAdapter.h" />
298299
<ClInclude Include="Internals\CefResponseFilterAdapter.h" />
299300
<ClInclude Include="Internals\CefResponseWrapper.h" />

0 commit comments

Comments
 (0)