| Index: content/common/gpu/image_transport_surface.cc
|
| diff --git a/content/common/gpu/image_transport_surface.cc b/content/common/gpu/image_transport_surface.cc
|
| index f8f07421d5d820e4699f326e3c73d6272ffbe769..9d5371f4221edf3c17cdafb7710d2f6c2ebd976d 100644
|
| --- a/content/common/gpu/image_transport_surface.cc
|
| +++ b/content/common/gpu/image_transport_surface.cc
|
| @@ -54,7 +54,7 @@ ImageTransportHelper::ImageTransportHelper(ImageTransportSurface* surface,
|
| ImageTransportHelper::~ImageTransportHelper() {
|
| if (stub_) {
|
| stub_->SetLatencyInfoCallback(
|
| - base::Callback<void(const cc::LatencyInfo&)>());
|
| + base::Callback<void(const ui::LatencyInfo&)>());
|
| }
|
| manager_->RemoveRoute(route_id_);
|
| }
|
| @@ -128,7 +128,7 @@ void ImageTransportHelper::SendUpdateVSyncParameters(
|
| }
|
|
|
| void ImageTransportHelper::SendLatencyInfo(
|
| - const cc::LatencyInfo& latency_info) {
|
| + const ui::LatencyInfo& latency_info) {
|
| manager_->Send(new GpuHostMsg_FrameDrawn(latency_info));
|
| }
|
|
|
| @@ -201,7 +201,7 @@ void ImageTransportHelper::Resize(gfx::Size size) {
|
| }
|
|
|
| void ImageTransportHelper::SetLatencyInfo(
|
| - const cc::LatencyInfo& latency_info) {
|
| + const ui::LatencyInfo& latency_info) {
|
| surface_->SetLatencyInfo(latency_info);
|
| }
|
|
|
| @@ -242,7 +242,7 @@ bool PassThroughImageTransportSurface::DeferDraws() {
|
| }
|
|
|
| void PassThroughImageTransportSurface::SetLatencyInfo(
|
| - const cc::LatencyInfo& latency_info) {
|
| + const ui::LatencyInfo& latency_info) {
|
| latency_info_ = latency_info;
|
| }
|
|
|
|
|