| Index: ui/ozone/platform/dri/dri_window_delegate_impl.cc
|
| diff --git a/ui/ozone/platform/dri/dri_window_delegate_impl.cc b/ui/ozone/platform/dri/dri_window_delegate_impl.cc
|
| index a95a8fc6663de38a75a46da72f4249d1e9bba42f..cb5b7a17e14597328b13535cdc34164543574e0b 100644
|
| --- a/ui/ozone/platform/dri/dri_window_delegate_impl.cc
|
| +++ b/ui/ozone/platform/dri/dri_window_delegate_impl.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "ui/ozone/platform/dri/dri_window_delegate_impl.h"
|
|
|
| -#include "base/debug/trace_event.h"
|
| #include "ui/ozone/platform/dri/screen_manager.h"
|
|
|
| namespace ui {
|
| @@ -18,11 +17,9 @@
|
| }
|
|
|
| void DriWindowDelegateImpl::Initialize() {
|
| - TRACE_EVENT1("dri", "DriWindowDelegateImpl::Initialize", "widget", widget_);
|
| }
|
|
|
| void DriWindowDelegateImpl::Shutdown() {
|
| - TRACE_EVENT1("dri", "DriWindowDelegateImpl::Shutdown", "widget", widget_);
|
| }
|
|
|
| gfx::AcceleratedWidget DriWindowDelegateImpl::GetAcceleratedWidget() {
|
| @@ -34,12 +31,6 @@
|
| }
|
|
|
| void DriWindowDelegateImpl::OnBoundsChanged(const gfx::Rect& bounds) {
|
| - TRACE_EVENT2("dri",
|
| - "DriWindowDelegateImpl::OnBoundsChanged",
|
| - "widget",
|
| - widget_,
|
| - "bounds",
|
| - bounds.ToString());
|
| controller_ = screen_manager_->GetDisplayController(bounds);
|
| }
|
|
|
|
|