| Index: cc/output/overlay_processor.cc
|
| diff --git a/cc/output/overlay_processor.cc b/cc/output/overlay_processor.cc
|
| index afdb966fe0133db8a778bee1a842b7813bde6d41..f79d988086c4d46cdbbfc679dc12d8d69382f085 100644
|
| --- a/cc/output/overlay_processor.cc
|
| +++ b/cc/output/overlay_processor.cc
|
| @@ -31,10 +31,11 @@ void OverlayProcessor::Initialize() {
|
| OverlayProcessor::~OverlayProcessor() {}
|
|
|
| void OverlayProcessor::ProcessForOverlays(
|
| - RenderPassList* render_passes_in_draw_order) {
|
| + RenderPassList* render_passes_in_draw_order,
|
| + OverlayCandidateList* candidate_list) {
|
| for (StrategyList::iterator it = strategies_.begin(); it != strategies_.end();
|
| ++it) {
|
| - if ((*it)->Attempt(render_passes_in_draw_order))
|
| + if ((*it)->Attempt(render_passes_in_draw_order, candidate_list))
|
| return;
|
| }
|
| }
|
|
|