| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_PROXY_H_ | 5 #ifndef UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_PROXY_H_ |
| 6 #define UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_PROXY_H_ | 6 #define UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_PROXY_H_ |
| 7 | 7 |
| 8 #include "ui/gfx/geometry/rect.h" | |
| 9 #include "ui/ozone/platform/dri/channel_observer.h" | |
| 10 #include "ui/ozone/platform/dri/dri_window_delegate.h" | 8 #include "ui/ozone/platform/dri/dri_window_delegate.h" |
| 11 | 9 |
| 12 namespace ui { | 10 namespace ui { |
| 13 | 11 |
| 14 class GpuPlatformSupportHostGbm; | 12 class GpuPlatformSupportHostGbm; |
| 15 | 13 |
| 16 // This is used when running with a GPU process (or with the in-process GPU) to | 14 // This is used when running with a GPU process (or with the in-process GPU) to |
| 17 // IPC the native window configuration from the browser to the GPU. | 15 // IPC the native window configuration from the browser to the GPU. |
| 18 class DriWindowDelegateProxy : public DriWindowDelegate, | 16 class DriWindowDelegateProxy : public DriWindowDelegate { |
| 19 public ChannelObserver { | |
| 20 public: | 17 public: |
| 21 DriWindowDelegateProxy(gfx::AcceleratedWidget widget, | 18 DriWindowDelegateProxy(gfx::AcceleratedWidget widget, |
| 22 GpuPlatformSupportHostGbm* sender); | 19 GpuPlatformSupportHostGbm* sender); |
| 23 virtual ~DriWindowDelegateProxy(); | 20 virtual ~DriWindowDelegateProxy(); |
| 24 | 21 |
| 25 // DriWindowDelegate: | 22 // DriWindowDelegate: |
| 26 virtual void Initialize() OVERRIDE; | 23 virtual void Initialize() OVERRIDE; |
| 27 virtual void Shutdown() OVERRIDE; | 24 virtual void Shutdown() OVERRIDE; |
| 28 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; | 25 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; |
| 29 virtual HardwareDisplayController* GetController() OVERRIDE; | 26 virtual HardwareDisplayController* GetController() OVERRIDE; |
| 30 virtual void OnBoundsChanged(const gfx::Rect& bounds) OVERRIDE; | 27 virtual void OnBoundsChanged(const gfx::Rect& bounds) OVERRIDE; |
| 31 | 28 |
| 32 // ChannelObserver: | |
| 33 virtual void OnChannelEstablished() OVERRIDE; | |
| 34 virtual void OnChannelDestroyed() OVERRIDE; | |
| 35 | |
| 36 private: | 29 private: |
| 37 gfx::AcceleratedWidget widget_; | 30 gfx::AcceleratedWidget widget_; |
| 38 GpuPlatformSupportHostGbm* sender_; | 31 GpuPlatformSupportHostGbm* sender_; |
| 39 gfx::Rect bounds_; | |
| 40 // Tracks if the connection is established or not. | |
| 41 bool has_connection_; | |
| 42 | 32 |
| 43 DISALLOW_COPY_AND_ASSIGN(DriWindowDelegateProxy); | 33 DISALLOW_COPY_AND_ASSIGN(DriWindowDelegateProxy); |
| 44 }; | 34 }; |
| 45 | 35 |
| 46 } // namespace ui | 36 } // namespace ui |
| 47 | 37 |
| 48 #endif // UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_PROXY_H_ | 38 #endif // UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_PROXY_H_ |
| OLD | NEW |