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

Unified Diff: cc/test/fake_scrollbar_layer.h

Issue 11464041: cc: Don't use partial updates for scrollbars when they are not allowed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nit Created 8 years 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
new file mode 100644
index 0000000000000000000000000000000000000000..354cf8bb5761e2ec70e114e2938b36571f82cbc6
--- /dev/null
+++ b/cc/test/fake_scrollbar_layer.h
@@ -0,0 +1,38 @@
+// Copyright 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CC_TEST_FAKE_SCROLLBAR_LAYER_H_
+#define CC_TEST_FAKE_SCROLLBAR_LAYER_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "cc/scrollbar_layer.h"
+
+namespace cc {
+
+class FakeScrollbarLayer : public ScrollbarLayer {
+public:
+ static scoped_refptr<FakeScrollbarLayer> Create(
+ bool paint_during_update, int scrolling_layer_id) {
+ return make_scoped_refptr(new FakeScrollbarLayer(
+ paint_during_update, scrolling_layer_id));
+ }
+
+ int update_count() { return update_count_; }
+ void reset_update_count() { update_count_ = 0; }
+
+ virtual void update(
+ ResourceUpdateQueue& queue,
+ const OcclusionTracker* occlusion,
+ RenderingStats& stats) OVERRIDE;
+
+private:
+ FakeScrollbarLayer(bool paint_during_update, int scrolling_layer_id);
+ virtual ~FakeScrollbarLayer();
+
+ int update_count_;
+};
+
+} // namespace cc
+
+#endif // CC_TEST_FAKE_SCROLLBAR_LAYER_H_
« 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