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

Side by Side Diff: services/ui/ws/platform_display_delegate.h

Issue 2356913002: Pass device scale factor from display to ws. (Closed)
Patch Set: Rebase, fix tests and cleanup. Created 4 years, 2 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
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 SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_ 5 #ifndef SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_
6 #define SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_ 6 #define SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_
7 7
8 #include "services/ui/ws/ids.h" 8 #include "services/ui/ws/ids.h"
9 9
10 namespace gfx {
11 class Size;
12 }
13
10 namespace ui { 14 namespace ui {
11 class Event; 15 class Event;
12 } 16 }
13 17
14 namespace ui { 18 namespace ui {
15 19
16 namespace ws { 20 namespace ws {
17 21
18 class ServerWindow; 22 class ServerWindow;
19 struct ViewportMetrics; 23 struct ViewportMetrics;
20 24
21 // PlatformDisplayDelegate is implemented by an object that manages the 25 // PlatformDisplayDelegate is implemented by an object that manages the
22 // lifetime of a PlatformDisplay, forwards events to the appropriate windows, 26 // lifetime of a PlatformDisplay, forwards events to the appropriate windows,
23 /// and responses to changes in viewport size. 27 /// and responses to changes in viewport size.
24 class PlatformDisplayDelegate { 28 class PlatformDisplayDelegate {
25 public: 29 public:
30 // Creates the root window for this display with |size|.
31 virtual void CreateRootWindow(const gfx::Size& size);
sky 2016/09/22 21:42:06 Naming this CreateRootWindow() is rather specific
kylechar 2016/09/23 13:22:32 I've added the units for size. Unfortunately there
32
26 // Returns the root window of this display. 33 // Returns the root window of this display.
27 virtual ServerWindow* GetRootWindow() = 0; 34 virtual ServerWindow* GetRootWindow() = 0;
28 35
29 virtual bool IsInHighContrastMode() = 0; 36 virtual bool IsInHighContrastMode() = 0;
30 37
31 // Called when an event arrives. 38 // Called when an event arrives.
32 virtual void OnEvent(const ui::Event& event) = 0; 39 virtual void OnEvent(const ui::Event& event) = 0;
33 40
34 // Called when the Display loses capture. 41 // Called when the Display loses capture.
35 virtual void OnNativeCaptureLost() = 0; 42 virtual void OnNativeCaptureLost() = 0;
36 43
37 // Signals that the metrics of this display's viewport has changed. 44 // Signals that the metrics of this display's viewport has changed.
38 virtual void OnViewportMetricsChanged(const ViewportMetrics& old_metrics, 45 virtual void OnViewportMetricsChanged(const ViewportMetrics& old_metrics,
39 const ViewportMetrics& new_metrics) = 0; 46 const ViewportMetrics& new_metrics) = 0;
40 47
41 // Called when a compositor frame is finished drawing. 48 // Called when a compositor frame is finished drawing.
42 virtual void OnCompositorFrameDrawn() = 0; 49 virtual void OnCompositorFrameDrawn() = 0;
43 50
44 protected: 51 protected:
45 virtual ~PlatformDisplayDelegate() {} 52 virtual ~PlatformDisplayDelegate() {}
46 }; 53 };
47 54
48 } // namespace ws 55 } // namespace ws
49 56
50 } // namespace ui 57 } // namespace ui
51 58
52 #endif // SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_ 59 #endif // SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698