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

Unified Diff: cc/resources/bitmap_skpicture_content_layer_updater.cc

Issue 12962007: cc: Chromify resource_update_queue (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: 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
Index: cc/resources/bitmap_skpicture_content_layer_updater.cc
diff --git a/cc/resources/bitmap_skpicture_content_layer_updater.cc b/cc/resources/bitmap_skpicture_content_layer_updater.cc
index e2fdc049fb9f7e3e2d72ac7db503f0a0358147ce..139a190699791f6cf96d171659e57730281695ec 100644
--- a/cc/resources/bitmap_skpicture_content_layer_updater.cc
+++ b/cc/resources/bitmap_skpicture_content_layer_updater.cc
@@ -41,9 +41,9 @@ void BitmapSkPictureContentLayerUpdater::Resource::Update(
ResourceUpdate upload = ResourceUpdate::Create(
texture(), &bitmap_, source_rect, source_rect, dest_offset);
if (partial_update)
- queue->appendPartialUpload(upload);
+ queue->AppendPartialUpload(upload);
else
- queue->appendFullUpload(upload);
+ queue->AppendFullUpload(upload);
}
scoped_refptr<BitmapSkPictureContentLayerUpdater>

Powered by Google App Engine
This is Rietveld 408576698