| // Copyright (c) 2020 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef UI_VIEWS_EXAMPLES_EXAMPLES_VIEWS_DELEGATE_CHROMEOS_H_ |
| #define UI_VIEWS_EXAMPLES_EXAMPLES_VIEWS_DELEGATE_CHROMEOS_H_ |
| |
| #include <memory> |
| |
| #include "base/scoped_observation.h" |
| #include "ui/aura/window_tree_host.h" |
| #include "ui/aura/window_tree_host_observer.h" |
| #include "ui/views/test/desktop_test_views_delegate.h" |
| |
| namespace wm { |
| class WMTestHelper; |
| } |
| |
| namespace views { |
| namespace examples { |
| |
| class ExamplesViewsDelegateChromeOS : public DesktopTestViewsDelegate, |
| public aura::WindowTreeHostObserver { |
| public: |
| ExamplesViewsDelegateChromeOS(); |
| ~ExamplesViewsDelegateChromeOS() override; |
| |
| private: |
| // ViewsDelegate: |
| void OnBeforeWidgetInit(Widget::InitParams* params, |
| internal::NativeWidgetDelegate* delegate) override; |
| |
| // aura::WindowTreeHostObserver: |
| void OnHostCloseRequested(aura::WindowTreeHost* host) override; |
| |
| base::ScopedObservation<aura::WindowTreeHost, aura::WindowTreeHostObserver> |
| observation_{this}; |
| std::unique_ptr<wm::WMTestHelper> wm_helper_; |
| }; |
| |
| } // namespace examples |
| } // namespace views |
| |
| #endif // UI_VIEWS_EXAMPLES_EXAMPLES_VIEWS_DELEGATE_CHROMEOS_H_ |