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

Side by Side Diff: cc/test/fake_painted_scrollbar_layer.cc

Issue 295193002: Get rid of graphics layer anchor points, and replace with transform origin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed. Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/test/fake_painted_scrollbar_layer.h" 5 #include "cc/test/fake_painted_scrollbar_layer.h"
6 6
7 #include "base/auto_reset.h" 7 #include "base/auto_reset.h"
8 #include "cc/resources/resource_update_queue.h" 8 #include "cc/resources/resource_update_queue.h"
9 #include "cc/test/fake_scrollbar.h" 9 #include "cc/test/fake_scrollbar.h"
10 10
(...skipping 10 matching lines...) Expand all
21 } 21 }
22 22
23 FakePaintedScrollbarLayer::FakePaintedScrollbarLayer( 23 FakePaintedScrollbarLayer::FakePaintedScrollbarLayer(
24 FakeScrollbar* fake_scrollbar, 24 FakeScrollbar* fake_scrollbar,
25 int scrolling_layer_id) 25 int scrolling_layer_id)
26 : PaintedScrollbarLayer(scoped_ptr<Scrollbar>(fake_scrollbar).Pass(), 26 : PaintedScrollbarLayer(scoped_ptr<Scrollbar>(fake_scrollbar).Pass(),
27 scrolling_layer_id), 27 scrolling_layer_id),
28 update_count_(0), 28 update_count_(0),
29 push_properties_count_(0), 29 push_properties_count_(0),
30 fake_scrollbar_(fake_scrollbar) { 30 fake_scrollbar_(fake_scrollbar) {
31 SetAnchorPoint(gfx::PointF(0.f, 0.f)); 31 SetTransformOrigin(gfx::Point3F(0.f, 0.f, 0.f));
32 SetBounds(gfx::Size(1, 1)); 32 SetBounds(gfx::Size(1, 1));
33 SetIsDrawable(true); 33 SetIsDrawable(true);
34 } 34 }
35 35
36 FakePaintedScrollbarLayer::~FakePaintedScrollbarLayer() {} 36 FakePaintedScrollbarLayer::~FakePaintedScrollbarLayer() {}
37 37
38 bool FakePaintedScrollbarLayer::Update( 38 bool FakePaintedScrollbarLayer::Update(
39 ResourceUpdateQueue* queue, 39 ResourceUpdateQueue* queue,
40 const OcclusionTracker<Layer>* occlusion) { 40 const OcclusionTracker<Layer>* occlusion) {
41 bool updated = PaintedScrollbarLayer::Update(queue, occlusion); 41 bool updated = PaintedScrollbarLayer::Update(queue, occlusion);
42 ++update_count_; 42 ++update_count_;
43 return updated; 43 return updated;
44 } 44 }
45 45
46 void FakePaintedScrollbarLayer::PushPropertiesTo(LayerImpl* layer) { 46 void FakePaintedScrollbarLayer::PushPropertiesTo(LayerImpl* layer) {
47 PaintedScrollbarLayer::PushPropertiesTo(layer); 47 PaintedScrollbarLayer::PushPropertiesTo(layer);
48 ++push_properties_count_; 48 ++push_properties_count_;
49 } 49 }
50 50
51 scoped_ptr<base::AutoReset<bool> > 51 scoped_ptr<base::AutoReset<bool> >
52 FakePaintedScrollbarLayer::IgnoreSetNeedsCommit() { 52 FakePaintedScrollbarLayer::IgnoreSetNeedsCommit() {
53 return make_scoped_ptr( 53 return make_scoped_ptr(
54 new base::AutoReset<bool>(&ignore_set_needs_commit_, true)); 54 new base::AutoReset<bool>(&ignore_set_needs_commit_, true));
55 } 55 }
56 56
57 } // namespace cc 57 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698