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

Unified Diff: cc/test/pixel_test.h

Issue 23454014: cc: Drop ContextProvider references on the impl thread before quitting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: callbackcontrolcenter: rebase Created 7 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
« no previous file with comments | « cc/resources/texture_mailbox_deleter_unittest.cc ('k') | cc/test/pixel_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/pixel_test.h
diff --git a/cc/test/pixel_test.h b/cc/test/pixel_test.h
index 2d5e8ce40f977b38b51ddba8f1439b01d946fdf0..6ff17621b15af05bd84689484ad2e78dd4515863 100644
--- a/cc/test/pixel_test.h
+++ b/cc/test/pixel_test.h
@@ -47,6 +47,7 @@ class PixelTest : public testing::Test {
class PixelTestRendererClient;
scoped_ptr<OutputSurface> output_surface_;
scoped_ptr<ResourceProvider> resource_provider_;
+ scoped_ptr<TextureMailboxDeleter> texture_mailbox_deleter_;
scoped_ptr<PixelTestRendererClient> fake_client_;
scoped_ptr<DirectRenderer> renderer_;
scoped_ptr<SkBitmap> result_bitmap_;
@@ -89,11 +90,13 @@ class GLRendererWithSkiaGPUBackend : public GLRenderer {
const LayerTreeSettings* settings,
OutputSurface* output_surface,
ResourceProvider* resource_provider,
+ TextureMailboxDeleter* texture_mailbox_deleter,
int highp_threshold_min)
: GLRenderer(client,
settings,
output_surface,
resource_provider,
+ texture_mailbox_deleter,
highp_threshold_min) {}
};
@@ -105,11 +108,13 @@ class GLRendererWithExpandedViewport : public GLRenderer {
const LayerTreeSettings* settings,
OutputSurface* output_surface,
ResourceProvider* resource_provider,
+ TextureMailboxDeleter* texture_mailbox_deleter,
int highp_threshold_min)
: GLRenderer(client,
settings,
output_surface,
resource_provider,
+ texture_mailbox_deleter,
highp_threshold_min) {}
};
« no previous file with comments | « cc/resources/texture_mailbox_deleter_unittest.cc ('k') | cc/test/pixel_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698