| Index: cc/output/overlay_processor.cc
|
| diff --git a/cc/output/overlay_processor.cc b/cc/output/overlay_processor.cc
|
| index afdb966fe0133db8a778bee1a842b7813bde6d41..f17549ac98bfae770de3f0e797bf93cb431ee1a9 100644
|
| --- a/cc/output/overlay_processor.cc
|
| +++ b/cc/output/overlay_processor.cc
|
| @@ -30,13 +30,14 @@ void OverlayProcessor::Initialize() {
|
|
|
| OverlayProcessor::~OverlayProcessor() {}
|
|
|
| -void OverlayProcessor::ProcessForOverlays(
|
| +bool OverlayProcessor::ProcessForOverlays(
|
| RenderPassList* render_passes_in_draw_order) {
|
| for (StrategyList::iterator it = strategies_.begin(); it != strategies_.end();
|
| ++it) {
|
| if ((*it)->Attempt(render_passes_in_draw_order))
|
| - return;
|
| + return true;
|
| }
|
| + return false;
|
| }
|
|
|
| } // namespace cc
|
|
|