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

Unified Diff: cc/output/overlay_processor.h

Issue 1142343008: cc: Rework overlays to not use the ResourceProvider and pass texture size (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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_processor.h
diff --git a/cc/output/overlay_processor.h b/cc/output/overlay_processor.h
index e50972e711d70b28ba624d1c14679d58cbfb5da7..8341d130284f0a62b63d3ffcb4e5abfe2e050144 100644
--- a/cc/output/overlay_processor.h
+++ b/cc/output/overlay_processor.h
@@ -29,7 +29,7 @@ class CC_EXPORT OverlayProcessor {
};
typedef ScopedPtrVector<Strategy> StrategyList;
- OverlayProcessor(OutputSurface* surface, ResourceProvider* resource_provider);
+ OverlayProcessor(OutputSurface* surface);
virtual ~OverlayProcessor();
// Virtual to allow testing different strategies.
virtual void Initialize();
@@ -40,7 +40,6 @@ class CC_EXPORT OverlayProcessor {
protected:
StrategyList strategies_;
OutputSurface* surface_;
- ResourceProvider* resource_provider_;
private:
DISALLOW_COPY_AND_ASSIGN(OverlayProcessor);

Powered by Google App Engine
This is Rietveld 408576698