Index: cc/output/overlay_strategy_common.h |
diff --git a/cc/output/overlay_strategy_common.h b/cc/output/overlay_strategy_common.h |
index 6d8c40559eb6afed356c8430ec9d0c73040fb75b..2593d51c1c67b3cac77ffa4f13e2d2f026f17429 100644 |
--- a/cc/output/overlay_strategy_common.h |
+++ b/cc/output/overlay_strategy_common.h |
@@ -19,12 +19,13 @@ class TextureDrawQuad; |
class CC_EXPORT OverlayStrategyCommonDelegate { |
public: |
virtual ~OverlayStrategyCommonDelegate() {} |
ccameron
2015/09/02 21:41:55
It might be easier to read to create an enum for t
Andre
2015/09/02 21:54:51
Do you still want this change if ListContainer::Er
ccameron
2015/09/02 22:22:33
I think there needs to be a clear "STOP_LOOKING_FO
Andre
2015/09/03 22:45:59
Done.
|
- virtual bool TryOverlay(OverlayCandidateValidator* capability_checker, |
- RenderPassList* render_passes_in_draw_order, |
- OverlayCandidateList* candidate_list, |
- const OverlayCandidate& candidate, |
- QuadList::Iterator iter, |
- float device_scale_factor) = 0; |
+ virtual QuadList::Iterator TryOverlay( |
+ OverlayCandidateValidator* capability_checker, |
+ RenderPassList* render_passes_in_draw_order, |
+ OverlayCandidateList* candidate_list, |
+ const OverlayCandidate& candidate, |
+ QuadList::Iterator iter, |
+ float device_scale_factor) = 0; |
}; |
class CC_EXPORT OverlayStrategyCommon : public OverlayProcessor::Strategy { |