| Index: cc/surfaces/display.cc
|
| diff --git a/cc/surfaces/display.cc b/cc/surfaces/display.cc
|
| index 2b982d4694b6120e79de98925d9431da0745dec6..c32dff0bcfc952015ebaea3d33a8a057307f6287 100644
|
| --- a/cc/surfaces/display.cc
|
| +++ b/cc/surfaces/display.cc
|
| @@ -71,7 +71,7 @@ Display::~Display() {
|
| for (const auto& id_entry : aggregator_->previous_contained_surfaces()) {
|
| Surface* surface = surface_manager_->GetSurfaceForId(id_entry.first);
|
| if (surface)
|
| - surface->RunDrawCallbacks();
|
| + surface->RunDrawCallback();
|
| }
|
| }
|
| }
|
| @@ -269,7 +269,7 @@ bool Display::DrawAndSwap() {
|
| for (const auto& id_entry : aggregator_->previous_contained_surfaces()) {
|
| Surface* surface = surface_manager_->GetSurfaceForId(id_entry.first);
|
| if (surface)
|
| - surface->RunDrawCallbacks();
|
| + surface->RunDrawCallback();
|
| }
|
|
|
| frame.metadata.latency_info.insert(frame.metadata.latency_info.end(),
|
|
|