// Copyright (C) Microsoft Corporation. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. using System.Runtime.InteropServices; using System.Windows; namespace WebView2WpfBrowser { /// /// Interaction logic for App.xaml /// public partial class App : Application { public bool newRuntimeEventHandled = false; public App() { InitializeComponent(); this.Resources["AdditionalArgs"] = "--enable-features=ThirdPartyStoragePartitioning,PartitionedCookies"; } } }