| Index: chrome/browser/gpu_process_host_ui_shim.cc
|
| diff --git a/chrome/browser/gpu_process_host_ui_shim.cc b/chrome/browser/gpu_process_host_ui_shim.cc
|
| index c1f6d0c14d01411ab75e621c4fa99ff37ee55374..6387c1db1eeba1c5ddd566528da30ecc175c54d4 100644
|
| --- a/chrome/browser/gpu_process_host_ui_shim.cc
|
| +++ b/chrome/browser/gpu_process_host_ui_shim.cc
|
| @@ -15,6 +15,7 @@
|
| #include "content/browser/renderer_host/render_view_host.h"
|
| #include "content/browser/renderer_host/render_widget_host_view.h"
|
| #include "content/common/gpu_messages.h"
|
| +#include "gpu/common/gpu_trace_event.h"
|
|
|
| #if defined(OS_LINUX)
|
| // These two #includes need to come after gpu_messages.h.
|
| @@ -261,6 +262,7 @@ void GpuProcessHostUIShim::EstablishGpuChannel(
|
| int renderer_id,
|
| EstablishChannelCallback *callback) {
|
| DCHECK(CalledOnValidThread());
|
| + GPU_TRACE_EVENT0("gpu", "GpuProcessHostUIShim::EstablishGpuChannel");
|
| linked_ptr<EstablishChannelCallback> wrapped_callback(callback);
|
|
|
| // If GPU features are already blacklisted, no need to establish the channel.
|
| @@ -536,4 +538,3 @@ void GpuProcessHostUIShim::OnScheduleComposite(int renderer_id,
|
| }
|
|
|
| #endif
|
| -
|
|
|