blob: ba4652cd41aaeaa7e7d9ad6c1466c7e7312a38ab (
plain)
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
49
50
51
52
53
|
// Copyright 2015 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 COMPONENTS_MUS_WS_DISPLAY_MANAGER_DELEGATE_H_
#define COMPONENTS_MUS_WS_DISPLAY_MANAGER_DELEGATE_H_
#include "components/mus/public/interfaces/window_tree.mojom.h"
#include "components/mus/ws/ids.h"
namespace cc {
struct SurfaceId;
}
namespace mus {
namespace ws {
class ServerWindow;
// A DisplayManagerDelegate an interface to be implemented by an object that
// manages the lifetime of a DisplayManager, forwards events to the appropriate
// windows, and responses to changes in viewport size.
class DisplayManagerDelegate {
public:
// Returns the root window of this display.
virtual ServerWindow* GetRootWindow() = 0;
// Called when the window managed by the DisplayManager is closed.
virtual void OnDisplayClosed() = 0;
// Called when an event arrives.
virtual void OnEvent(mojom::EventPtr event) = 0;
// Signals that the metrics of this display's viewport has changed.
virtual void OnViewportMetricsChanged(
const mojom::ViewportMetrics& old_metrics,
const mojom::ViewportMetrics& new_metrics) = 0;
virtual void OnTopLevelSurfaceChanged(cc::SurfaceId surface_id) = 0;
// Called when a compositor frame is finished drawing.
virtual void OnCompositorFrameDrawn() = 0;
protected:
virtual ~DisplayManagerDelegate() {}
};
} // namespace ws
} // namespace mus
#endif // COMPONENTS_MUS_WS_DISPLAY_MANAGER_DELEGATE_H_
|