| 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/drm/host/drm_window_host.h" | 5 #include "ui/ozone/platform/drm/host/drm_window_host.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "ui/display/display.h" | 8 #include "ui/display/display.h" |
| 9 #include "ui/events/devices/device_data_manager.h" | 9 #include "ui/events/devices/device_data_manager.h" |
| 10 #include "ui/events/event.h" | 10 #include "ui/events/event.h" |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 DeviceDataManager::GetInstance()->GetTargetDisplayForTouchDevice( | 145 DeviceDataManager::GetInstance()->GetTargetDisplayForTouchDevice( |
| 146 event->source_device_id()); | 146 event->source_device_id()); |
| 147 | 147 |
| 148 if (display_id == display::kInvalidDisplayId) | 148 if (display_id == display::kInvalidDisplayId) |
| 149 return false; | 149 return false; |
| 150 | 150 |
| 151 DrmDisplayHost* display = display_manager_->GetDisplay(display_id); | 151 DrmDisplayHost* display = display_manager_->GetDisplay(display_id); |
| 152 if (!display) | 152 if (!display) |
| 153 return false; | 153 return false; |
| 154 | 154 |
| 155 DisplaySnapshot* snapshot = display->snapshot(); | 155 display::DisplaySnapshot* snapshot = display->snapshot(); |
| 156 if (!snapshot->current_mode()) | 156 if (!snapshot->current_mode()) |
| 157 return false; | 157 return false; |
| 158 | 158 |
| 159 gfx::Rect display_bounds(snapshot->origin(), | 159 gfx::Rect display_bounds(snapshot->origin(), |
| 160 snapshot->current_mode()->size()); | 160 snapshot->current_mode()->size()); |
| 161 return display_bounds == bounds_; | 161 return display_bounds == bounds_; |
| 162 } else if (event->IsLocatedEvent()) { | 162 } else if (event->IsLocatedEvent()) { |
| 163 LocatedEvent* located_event = event->AsLocatedEvent(); | 163 LocatedEvent* located_event = event->AsLocatedEvent(); |
| 164 return bounds_.Contains(located_event->location()); | 164 return bounds_.Contains(located_event->location()); |
| 165 } | 165 } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 void DrmWindowHost::SendBoundsChange() { | 198 void DrmWindowHost::SendBoundsChange() { |
| 199 // Update the cursor before the window so that the cursor stays within the | 199 // Update the cursor before the window so that the cursor stays within the |
| 200 // window bounds when the window size shrinks. | 200 // window bounds when the window size shrinks. |
| 201 cursor_->CommitBoundsChange(widget_, bounds_, GetCursorConfinedBounds()); | 201 cursor_->CommitBoundsChange(widget_, bounds_, GetCursorConfinedBounds()); |
| 202 sender_->GpuWindowBoundsChanged(widget_, bounds_); | 202 sender_->GpuWindowBoundsChanged(widget_, bounds_); |
| 203 | 203 |
| 204 overlay_manager_->ResetCache(); | 204 overlay_manager_->ResetCache(); |
| 205 } | 205 } |
| 206 | 206 |
| 207 } // namespace ui | 207 } // namespace ui |
| OLD | NEW |