From 402267bf8efd9fd525eda96bb123c9aa185d9b5a Mon Sep 17 00:00:00 2001 From: amaitland Date: Mon, 10 Oct 2016 14:27:55 +1000 Subject: [PATCH] Remove call to EnableInternalPdfViewerOffScreen as it's been removed as Chromium no longer supports disabling of surfaces --- CefSharp.MinimalExample.Wpf/App.xaml.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/CefSharp.MinimalExample.Wpf/App.xaml.cs b/CefSharp.MinimalExample.Wpf/App.xaml.cs index 2f38d37..65f8930 100644 --- a/CefSharp.MinimalExample.Wpf/App.xaml.cs +++ b/CefSharp.MinimalExample.Wpf/App.xaml.cs @@ -9,7 +9,6 @@ namespace CefSharp.MinimalExample.Wpf { //Perform dependency check to make sure all relevant resources are in our output directory. var settings = new CefSettings(); - settings.EnableInternalPdfViewerOffScreen(); Cef.Initialize(settings, performDependencyCheck: true, browserProcessHandler: null); }