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

Unified Diff: ui/ozone/platform/drm/host/drm_window_host.cc

Issue 1161853007: ozone: Remove "Delegate" from window management IPCs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase again Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_gpu_platform_support.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/drm/host/drm_window_host.cc
diff --git a/ui/ozone/platform/drm/host/drm_window_host.cc b/ui/ozone/platform/drm/host/drm_window_host.cc
index d3e07c736c77b9311b937269acf4fb9f07749687..e51f3043d3f29452edf60b43fcc5b081fd8da572 100644
--- a/ui/ozone/platform/drm/host/drm_window_host.cc
+++ b/ui/ozone/platform/drm/host/drm_window_host.cc
@@ -47,7 +47,7 @@ DrmWindowHost::~DrmWindowHost() {
cursor_->OnWindowRemoved(widget_);
sender_->RemoveChannelObserver(this);
- sender_->Send(new OzoneGpuMsg_DestroyWindowDelegate(widget_));
+ sender_->Send(new OzoneGpuMsg_DestroyWindow(widget_));
}
void DrmWindowHost::Initialize() {
@@ -181,7 +181,7 @@ uint32_t DrmWindowHost::DispatchEvent(const PlatformEvent& native_event) {
}
void DrmWindowHost::OnChannelEstablished() {
- sender_->Send(new OzoneGpuMsg_CreateWindowDelegate(widget_));
+ sender_->Send(new OzoneGpuMsg_CreateWindow(widget_));
SendBoundsChange();
}
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_gpu_platform_support.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698