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

Unified Diff: cc/throttled_texture_uploader_unittest.cc

Issue 11183006: cc: Remove wtf includes from resource provider (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 years, 2 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/throttled_texture_uploader.cc ('k') | cc/tiled_layer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/throttled_texture_uploader_unittest.cc
diff --git a/cc/throttled_texture_uploader_unittest.cc b/cc/throttled_texture_uploader_unittest.cc
index 44bb5fb441fcb358fa78d0ae8a2fe2ff7f4803cb..5ed09f228b283bc8fbb65f3f9baf01ca4d8c767e 100644
--- a/cc/throttled_texture_uploader_unittest.cc
+++ b/cc/throttled_texture_uploader_unittest.cc
@@ -47,7 +47,7 @@ private:
TEST(ThrottledTextureUploaderTest, NumBlockingUploads)
{
OwnPtr<FakeWebGraphicsContext3DWithQueryTesting> fakeContext(adoptPtr(new FakeWebGraphicsContext3DWithQueryTesting));
- OwnPtr<ThrottledTextureUploader> uploader = ThrottledTextureUploader::create(fakeContext.get());
+ scoped_ptr<ThrottledTextureUploader> uploader = ThrottledTextureUploader::create(fakeContext.get());
scoped_ptr<CCPrioritizedTexture> texture =
CCPrioritizedTexture::create(NULL, IntSize(256, 256), GL_RGBA);
TextureUploader::Parameters upload;
@@ -77,7 +77,7 @@ TEST(ThrottledTextureUploaderTest, NumBlockingUploads)
TEST(ThrottledTextureUploaderTest, MarkPendingUploadsAsNonBlocking)
{
OwnPtr<FakeWebGraphicsContext3DWithQueryTesting> fakeContext(adoptPtr(new FakeWebGraphicsContext3DWithQueryTesting));
- OwnPtr<ThrottledTextureUploader> uploader = ThrottledTextureUploader::create(fakeContext.get());
+ scoped_ptr<ThrottledTextureUploader> uploader = ThrottledTextureUploader::create(fakeContext.get());
scoped_ptr<CCPrioritizedTexture> texture =
CCPrioritizedTexture::create(NULL, IntSize(256, 256), GL_RGBA);
TextureUploader::Parameters upload;
« no previous file with comments | « cc/throttled_texture_uploader.cc ('k') | cc/tiled_layer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698