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

Unified Diff: cc/test/fake_scrollbar_layer.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/skpicture_content_layer_updater.cc ('k') | cc/test/tiled_layer_test_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_scrollbar_layer.cc
diff --git a/cc/test/fake_scrollbar_layer.cc b/cc/test/fake_scrollbar_layer.cc
index ea1ce9ff759f51122b3ae970662d2549686daceb..43fcf84d3f5d286412f03ae2b3680b4795cafce8 100644
--- a/cc/test/fake_scrollbar_layer.cc
+++ b/cc/test/fake_scrollbar_layer.cc
@@ -33,12 +33,12 @@ FakeScrollbarLayer::~FakeScrollbarLayer() {}
void FakeScrollbarLayer::Update(ResourceUpdateQueue* queue,
const OcclusionTracker* occlusion,
RenderingStats* stats) {
- size_t full = queue->fullUploadSize();
- size_t partial = queue->partialUploadSize();
+ size_t full = queue->FullUploadSize();
+ size_t partial = queue->PartialUploadSize();
ScrollbarLayer::Update(queue, occlusion, stats);
update_count_++;
- last_update_full_upload_size_ = queue->fullUploadSize() - full;
- last_update_partial_upload_size_ = queue->partialUploadSize() - partial;
+ last_update_full_upload_size_ = queue->FullUploadSize() - full;
+ last_update_partial_upload_size_ = queue->PartialUploadSize() - partial;
}
} // namespace cc
« no previous file with comments | « cc/resources/skpicture_content_layer_updater.cc ('k') | cc/test/tiled_layer_test_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698