| Index: cc/throttled_texture_uploader_unittest.cc
|
| diff --git a/cc/throttled_texture_uploader_unittest.cc b/cc/throttled_texture_uploader_unittest.cc
|
| index 6644fa3160743b4ea73d39af897a5b20eae716ef..9a64d250ac76930cbcde0d19b6865315adb112b9 100644
|
| --- a/cc/throttled_texture_uploader_unittest.cc
|
| +++ b/cc/throttled_texture_uploader_unittest.cc
|
| @@ -47,8 +47,8 @@ TEST(ThrottledTextureUploaderTest, NumBlockingUploads)
|
| {
|
| scoped_ptr<FakeWebGraphicsContext3DWithQueryTesting> fakeContext(new FakeWebGraphicsContext3DWithQueryTesting);
|
| scoped_ptr<ThrottledTextureUploader> uploader = ThrottledTextureUploader::create(fakeContext.get());
|
| - scoped_ptr<CCPrioritizedTexture> texture =
|
| - CCPrioritizedTexture::create(NULL, IntSize(256, 256), GL_RGBA);
|
| + scoped_ptr<PrioritizedTexture> texture =
|
| + PrioritizedTexture::create(NULL, IntSize(256, 256), GL_RGBA);
|
| TextureUploader::Parameters upload;
|
| upload.texture = texture.get();
|
| upload.bitmap = NULL;
|
| @@ -77,8 +77,8 @@ TEST(ThrottledTextureUploaderTest, MarkPendingUploadsAsNonBlocking)
|
| {
|
| scoped_ptr<FakeWebGraphicsContext3DWithQueryTesting> fakeContext(new FakeWebGraphicsContext3DWithQueryTesting);
|
| scoped_ptr<ThrottledTextureUploader> uploader = ThrottledTextureUploader::create(fakeContext.get());
|
| - scoped_ptr<CCPrioritizedTexture> texture =
|
| - CCPrioritizedTexture::create(NULL, IntSize(256, 256), GL_RGBA);
|
| + scoped_ptr<PrioritizedTexture> texture =
|
| + PrioritizedTexture::create(NULL, IntSize(256, 256), GL_RGBA);
|
| TextureUploader::Parameters upload;
|
| upload.texture = texture.get();
|
| upload.bitmap = NULL;
|
|
|