// 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. #pragma once #include "stdafx.h" #include #include "AppWindow.h" #include "ComponentBase.h" class ScenarioNonClientRegionSupport : public ComponentBase { public: ScenarioNonClientRegionSupport(AppWindow* appWindow); void AddChangeListener(); ~ScenarioNonClientRegionSupport() override; private: AppWindow* m_appWindow; wil::com_ptr m_webView; wil::com_ptr m_settings; wil::com_ptr m_experimentalSettings; wil::com_ptr m_compController5; std::wstring m_sampleUri; EventRegistrationToken m_navigationStartingToken = {}; EventRegistrationToken m_ContentLoadingToken = {}; EventRegistrationToken m_nonClientRegionChanged = {}; };