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 #include "ui/ozone/platform/dri/dri_window_delegate_proxy.h" | 5 #include "ui/ozone/platform/dri/dri_window_delegate_proxy.h" |
6 | 6 |
7 #include "ui/ozone/common/gpu/ozone_gpu_messages.h" | 7 #include "ui/ozone/common/gpu/ozone_gpu_messages.h" |
8 #include "ui/ozone/platform/dri/gpu_platform_support_host_gbm.h" | 8 #include "ui/ozone/platform/dri/gpu_platform_support_host_gbm.h" |
9 | 9 |
10 namespace ui { | 10 namespace ui { |
11 | 11 |
12 DriWindowDelegateProxy::DriWindowDelegateProxy( | 12 DriWindowDelegateProxy::DriWindowDelegateProxy( |
13 gfx::AcceleratedWidget widget, | 13 gfx::AcceleratedWidget widget, |
14 GpuPlatformSupportHostGbm* sender) | 14 GpuPlatformSupportHostGbm* sender) |
15 : widget_(widget), sender_(sender), has_connection_(false) { | 15 : widget_(widget), sender_(sender) { |
16 } | 16 } |
17 | 17 |
18 DriWindowDelegateProxy::~DriWindowDelegateProxy() { | 18 DriWindowDelegateProxy::~DriWindowDelegateProxy() { |
19 } | 19 } |
20 | 20 |
21 void DriWindowDelegateProxy::Initialize() { | 21 void DriWindowDelegateProxy::Initialize() { |
22 TRACE_EVENT1("dri", "DriWindowDelegateProxy::Initialize", "widget", widget_); | 22 bool status = sender_->Send(new OzoneGpuMsg_CreateWindowDelegate(widget_)); |
23 sender_->AddChannelObserver(this); | 23 DCHECK(status); |
24 } | 24 } |
25 | 25 |
26 void DriWindowDelegateProxy::Shutdown() { | 26 void DriWindowDelegateProxy::Shutdown() { |
27 TRACE_EVENT1("dri", "DriWindowDelegateProxy::Shutdown", "widget", widget_); | |
28 sender_->RemoveChannelObserver(this); | |
29 if (!has_connection_) | |
30 return; | |
31 | |
32 bool status = sender_->Send(new OzoneGpuMsg_DestroyWindowDelegate(widget_)); | 27 bool status = sender_->Send(new OzoneGpuMsg_DestroyWindowDelegate(widget_)); |
33 DCHECK(status); | 28 DCHECK(status); |
34 } | 29 } |
35 | 30 |
36 gfx::AcceleratedWidget DriWindowDelegateProxy::GetAcceleratedWidget() { | 31 gfx::AcceleratedWidget DriWindowDelegateProxy::GetAcceleratedWidget() { |
37 return widget_; | 32 return widget_; |
38 } | 33 } |
39 | 34 |
40 HardwareDisplayController* DriWindowDelegateProxy::GetController() { | 35 HardwareDisplayController* DriWindowDelegateProxy::GetController() { |
41 NOTREACHED(); | 36 NOTREACHED(); |
42 return NULL; | 37 return NULL; |
43 } | 38 } |
44 | 39 |
45 void DriWindowDelegateProxy::OnBoundsChanged(const gfx::Rect& bounds) { | 40 void DriWindowDelegateProxy::OnBoundsChanged(const gfx::Rect& bounds) { |
46 TRACE_EVENT2("dri", | |
47 "DriWindowDelegateProxy::OnBoundsChanged", | |
48 "widget", | |
49 widget_, | |
50 "bounds", | |
51 bounds.ToString()); | |
52 bounds_ = bounds; | |
53 if (!has_connection_) | |
54 return; | |
55 | |
56 bool status = | 41 bool status = |
57 sender_->Send(new OzoneGpuMsg_WindowBoundsChanged(widget_, bounds)); | 42 sender_->Send(new OzoneGpuMsg_WindowBoundsChanged(widget_, bounds)); |
58 DCHECK(status); | 43 DCHECK(status); |
59 } | 44 } |
60 | 45 |
61 void DriWindowDelegateProxy::OnChannelEstablished() { | |
62 TRACE_EVENT1( | |
63 "dri", "DriWindowDelegateProxy::OnChannelEstablished", "widget", widget_); | |
64 has_connection_ = true; | |
65 bool status = sender_->Send(new OzoneGpuMsg_CreateWindowDelegate(widget_)); | |
66 DCHECK(status); | |
67 OnBoundsChanged(bounds_); | |
68 } | |
69 | |
70 void DriWindowDelegateProxy::OnChannelDestroyed() { | |
71 TRACE_EVENT1( | |
72 "dri", "DriWindowDelegateProxy::OnChannelDestroyed", "widget", widget_); | |
73 has_connection_ = false; | |
74 } | |
75 | |
76 } // namespace ui | 46 } // namespace ui |
OLD | NEW |