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

Unified Diff: cc/resources/resource_update_controller_unittest.cc

Issue 12962007: cc: Chromify resource_update_queue (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 7 years, 9 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/resource_update_controller.cc ('k') | cc/resources/resource_update_queue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/resource_update_controller_unittest.cc
diff --git a/cc/resources/resource_update_controller_unittest.cc b/cc/resources/resource_update_controller_unittest.cc
index be871158e6009fa1f6f7f39572b433134d467fe1..bd8f46f5be44510b691a0682605c54011531edb3 100644
--- a/cc/resources/resource_update_controller_unittest.cc
+++ b/cc/resources/resource_update_controller_unittest.cc
@@ -146,7 +146,7 @@ protected:
const ResourceUpdate upload = ResourceUpdate::Create(
textures_[textureIndex].get(), &m_bitmap, rect, rect, gfx::Vector2d());
for (int i = 0; i < count; i++)
- m_queue->appendFullUpload(upload);
+ m_queue->AppendFullUpload(upload);
}
void appendFullUploadsToUpdateQueue(int count)
@@ -163,7 +163,7 @@ protected:
const ResourceUpdate upload = ResourceUpdate::Create(
textures_[textureIndex].get(), &m_bitmap, rect, rect, gfx::Vector2d());
for (int i = 0; i < count; i++)
- m_queue->appendPartialUpload(upload);
+ m_queue->AppendPartialUpload(upload);
}
void appendPartialUploadsToUpdateQueue(int count)
« no previous file with comments | « cc/resources/resource_update_controller.cc ('k') | cc/resources/resource_update_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698