Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(458)

Side by Side Diff: components/mus/ws/display_manager_delegate.h

Issue 1677513002: mus Window Server: implement event capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/mus/ws/display_manager.cc ('k') | components/mus/ws/event_dispatcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_MUS_WS_DISPLAY_MANAGER_DELEGATE_H_ 5 #ifndef COMPONENTS_MUS_WS_DISPLAY_MANAGER_DELEGATE_H_
6 #define COMPONENTS_MUS_WS_DISPLAY_MANAGER_DELEGATE_H_ 6 #define COMPONENTS_MUS_WS_DISPLAY_MANAGER_DELEGATE_H_
7 7
8 #include "components/mus/public/interfaces/window_tree.mojom.h" 8 #include "components/mus/public/interfaces/window_tree.mojom.h"
9 #include "components/mus/ws/ids.h" 9 #include "components/mus/ws/ids.h"
10 10
(...skipping 18 matching lines...) Expand all
29 public: 29 public:
30 // Returns the root window of this display. 30 // Returns the root window of this display.
31 virtual ServerWindow* GetRootWindow() = 0; 31 virtual ServerWindow* GetRootWindow() = 0;
32 32
33 // Called when the window managed by the DisplayManager is closed. 33 // Called when the window managed by the DisplayManager is closed.
34 virtual void OnDisplayClosed() = 0; 34 virtual void OnDisplayClosed() = 0;
35 35
36 // Called when an event arrives. 36 // Called when an event arrives.
37 virtual void OnEvent(const ui::Event& event) = 0; 37 virtual void OnEvent(const ui::Event& event) = 0;
38 38
39 // Called when the Display loses capture.
40 virtual void OnNativeCaptureLost() = 0;
41
39 // Signals that the metrics of this display's viewport has changed. 42 // Signals that the metrics of this display's viewport has changed.
40 virtual void OnViewportMetricsChanged( 43 virtual void OnViewportMetricsChanged(
41 const mojom::ViewportMetrics& old_metrics, 44 const mojom::ViewportMetrics& old_metrics,
42 const mojom::ViewportMetrics& new_metrics) = 0; 45 const mojom::ViewportMetrics& new_metrics) = 0;
43 46
44 virtual void OnTopLevelSurfaceChanged(cc::SurfaceId surface_id) = 0; 47 virtual void OnTopLevelSurfaceChanged(cc::SurfaceId surface_id) = 0;
45 48
46 // Called when a compositor frame is finished drawing. 49 // Called when a compositor frame is finished drawing.
47 virtual void OnCompositorFrameDrawn() = 0; 50 virtual void OnCompositorFrameDrawn() = 0;
48 51
49 protected: 52 protected:
50 virtual ~DisplayManagerDelegate() {} 53 virtual ~DisplayManagerDelegate() {}
51 }; 54 };
52 55
53 } // namespace ws 56 } // namespace ws
54 57
55 } // namespace mus 58 } // namespace mus
56 59
57 #endif // COMPONENTS_MUS_WS_DISPLAY_MANAGER_DELEGATE_H_ 60 #endif // COMPONENTS_MUS_WS_DISPLAY_MANAGER_DELEGATE_H_
OLDNEW
« no previous file with comments | « components/mus/ws/display_manager.cc ('k') | components/mus/ws/event_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698