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

Unified Diff: cc/test/tiled_layer_test_common.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/test/fake_scrollbar_layer.cc ('k') | cc/trees/layer_tree_host_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/tiled_layer_test_common.cc
diff --git a/cc/test/tiled_layer_test_common.cc b/cc/test/tiled_layer_test_common.cc
index 67ca38c380457d8c5837abe253608d42610198e7..01c8f83c72e146e9de481dd3a867ece275da5e43 100644
--- a/cc/test/tiled_layer_test_common.cc
+++ b/cc/test/tiled_layer_test_common.cc
@@ -33,9 +33,9 @@ void FakeLayerUpdater::Resource::Update(ResourceUpdateQueue* queue, gfx::Rect so
ResourceUpdate upload = ResourceUpdate::Create(
texture(), &m_bitmap, rect, rect, gfx::Vector2d());
if (partialUpdate)
- queue->appendPartialUpload(upload);
+ queue->AppendPartialUpload(upload);
else
- queue->appendFullUpload(upload);
+ queue->AppendFullUpload(upload);
m_layer->update();
}
« no previous file with comments | « cc/test/fake_scrollbar_layer.cc ('k') | cc/trees/layer_tree_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698