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

Unified Diff: cc/test/fake_scrollbar_layer.h

Issue 11941010: Fix scrollbars missing after lost context (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 11 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/scrollbar_layer.cc ('k') | cc/test/fake_scrollbar_layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_scrollbar_layer.h
diff --git a/cc/test/fake_scrollbar_layer.h b/cc/test/fake_scrollbar_layer.h
index 6bc27070c25cd4dd906a53cff83b45f5db65ddf7..222a0225bba90ad12af4bcd3562d62d09983360d 100644
--- a/cc/test/fake_scrollbar_layer.h
+++ b/cc/test/fake_scrollbar_layer.h
@@ -15,11 +15,17 @@ public:
static scoped_refptr<FakeScrollbarLayer> Create(
bool paint_during_update, bool has_thumb, int scrolling_layer_id) {
return make_scoped_refptr(new FakeScrollbarLayer(
- paint_during_update, has_thumb, scrolling_layer_id));
+ paint_during_update, has_thumb, scrolling_layer_id));
}
- int update_count() { return update_count_; }
+ 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 void update(
ResourceUpdateQueue& queue,
@@ -32,6 +38,8 @@ private:
virtual ~FakeScrollbarLayer();
int update_count_;
+ size_t last_update_full_upload_size_;
+ size_t last_update_partial_upload_size_;
};
} // namespace cc
« no previous file with comments | « cc/scrollbar_layer.cc ('k') | cc/test/fake_scrollbar_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698