Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4660)

Unified Diff: cc/output/overlay_strategy_common.h

Issue 1304053016: Mac Overlays: Allow multiple overlays with sandwich strategy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@snapshot
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698