1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
ash / wm / window_preview_view_test_api.h [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_WM_WINDOW_PREVIEW_VIEW_TEST_API_H_
#define ASH_WM_WINDOW_PREVIEW_VIEW_TEST_API_H_
#include "ash/wm/window_mirror_view.h"
#include "base/containers/flat_map.h"
#include "base/memory/raw_ptr.h"
#include "ui/aura/window.h"
#include "ui/gfx/geometry/rect_f.h"
namespace views {
class Widget;
} // namespace views
namespace ash {
class WindowPreviewView;
// Use the api in this class to test WindowPreviewView.
class WindowPreviewViewTestApi {
public:
explicit WindowPreviewViewTestApi(WindowPreviewView* preview_view);
WindowPreviewViewTestApi(const WindowPreviewViewTestApi&) = delete;
WindowPreviewViewTestApi& operator=(const WindowPreviewViewTestApi&) = delete;
~WindowPreviewViewTestApi();
gfx::RectF GetUnionRect() const;
const base::flat_map<aura::Window*,
raw_ptr<WindowMirrorView, CtnExperimental>>&
GetMirrorViews() const;
// Gets the mirror view in |mirror_views_| associated with |widget|. Returns
// null if |widget|'s window does not exist in |mirror_views_|.
WindowMirrorView* GetMirrorViewForWidget(views::Widget* widget);
private:
raw_ptr<WindowPreviewView, DanglingUntriaged> preview_view_;
};
} // namespace ash
#endif // ASH_WM_WINDOW_PREVIEW_VIEW_TEST_API_H_