| OLD | NEW |
| 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 namespace gfx { | 8 namespace gfx { |
| 9 class Size; | 9 class Size; |
| 10 } | 10 } |
| 11 | 11 |
| 12 namespace ui { | 12 namespace ui { |
| 13 | 13 |
| 14 class Event; | 14 class Event; |
| 15 | 15 |
| 16 namespace ws { | 16 namespace ws { |
| 17 | 17 |
| 18 class ServerWindow; | 18 class ServerWindow; |
| 19 | 19 |
| 20 // PlatformDisplayDelegate is implemented by an object that manages the | 20 // PlatformDisplayDelegate is implemented by an object that manages the |
| 21 // lifetime of a PlatformDisplay, forwards events to the appropriate windows, | 21 // lifetime of a PlatformDisplay, forwards events to the appropriate windows, |
| 22 /// and responses to changes in viewport size. | 22 /// and responses to changes in viewport size. |
| 23 class PlatformDisplayDelegate { | 23 class PlatformDisplayDelegate { |
| 24 public: | 24 public: |
| 25 // Returns the root window of this display. | 25 // Returns the root window of this display. |
| 26 virtual ServerWindow* GetRootWindow() = 0; | 26 virtual ServerWindow* GetRootWindow() = 0; |
| 27 | 27 |
| 28 // Called once when the AcceleratedWidget is available for drawing. |
| 29 virtual void OnAcceleratedWidgetAvailable() = 0; |
| 30 |
| 28 virtual bool IsInHighContrastMode() = 0; | 31 virtual bool IsInHighContrastMode() = 0; |
| 29 | 32 |
| 30 // Called when an event arrives. | 33 // Called when an event arrives. |
| 31 virtual void OnEvent(const ui::Event& event) = 0; | 34 virtual void OnEvent(const ui::Event& event) = 0; |
| 32 | 35 |
| 33 // Called when the Display loses capture. | 36 // Called when the Display loses capture. |
| 34 virtual void OnNativeCaptureLost() = 0; | 37 virtual void OnNativeCaptureLost() = 0; |
| 35 | 38 |
| 36 protected: | 39 protected: |
| 37 virtual ~PlatformDisplayDelegate() {} | 40 virtual ~PlatformDisplayDelegate() {} |
| 38 }; | 41 }; |
| 39 | 42 |
| 40 } // namespace ws | 43 } // namespace ws |
| 41 | 44 |
| 42 } // namespace ui | 45 } // namespace ui |
| 43 | 46 |
| 44 #endif // SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_ | 47 #endif // SERVICES_UI_WS_PLATFORM_DISPLAY_DELEGATE_H_ |
| OLD | NEW |