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

Unified Diff: cc/throttled_texture_uploader_unittest.cc

Issue 11189043: cc: Rename cc classes and members to match filenames (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
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;

Powered by Google App Engine
This is Rietveld 408576698