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

Unified Diff: cc/test/fake_scrollbar_layer.h

Issue 21917004: Change ScrollbarLayer to use UI resource (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed ScrollbarLayer to clear SkCanvas and reflect scale changes to the layer Created 7 years, 4 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/test/fake_scrollbar_layer.h
diff --git a/cc/test/fake_scrollbar_layer.h b/cc/test/fake_scrollbar_layer.h
index 43be832f34d105b56e815cb6fd9285f6b45e6283..60767f430c38470c287980e672a0b85684127617 100644
--- a/cc/test/fake_scrollbar_layer.h
+++ b/cc/test/fake_scrollbar_layer.h
@@ -23,12 +23,6 @@ class FakeScrollbarLayer : public ScrollbarLayer {
int update_count() const { return update_count_; }
void reset_update_count() { update_count_ = 0; }
- size_t last_update_full_upload_size() const {
- return last_update_full_upload_size_;
- }
- size_t last_update_partial_upload_size() const {
- return last_update_partial_upload_size_;
- }
virtual bool Update(ResourceUpdateQueue* queue,
const OcclusionTracker* occlusion) OVERRIDE;
@@ -48,8 +42,6 @@ class FakeScrollbarLayer : public ScrollbarLayer {
int update_count_;
size_t push_properties_count_;
- size_t last_update_full_upload_size_;
- size_t last_update_partial_upload_size_;
};
} // namespace cc

Powered by Google App Engine
This is Rietveld 408576698