| OLD | NEW |
| 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 29 matching lines...) Expand all Loading... |
| 40 bool updated = PaintedScrollbarLayer::Update(queue, occlusion); | 40 bool updated = PaintedScrollbarLayer::Update(queue, occlusion); |
| 41 ++update_count_; | 41 ++update_count_; |
| 42 return updated; | 42 return updated; |
| 43 } | 43 } |
| 44 | 44 |
| 45 void FakePaintedScrollbarLayer::PushPropertiesTo(LayerImpl* layer) { | 45 void FakePaintedScrollbarLayer::PushPropertiesTo(LayerImpl* layer) { |
| 46 PaintedScrollbarLayer::PushPropertiesTo(layer); | 46 PaintedScrollbarLayer::PushPropertiesTo(layer); |
| 47 ++push_properties_count_; | 47 ++push_properties_count_; |
| 48 } | 48 } |
| 49 | 49 |
| 50 scoped_ptr<base::AutoReset<bool> > | 50 scoped_ptr<base::AutoReset<bool>> |
| 51 FakePaintedScrollbarLayer::IgnoreSetNeedsCommit() { | 51 FakePaintedScrollbarLayer::IgnoreSetNeedsCommit() { |
| 52 return make_scoped_ptr( | 52 return make_scoped_ptr( |
| 53 new base::AutoReset<bool>(&ignore_set_needs_commit_, true)); | 53 new base::AutoReset<bool>(&ignore_set_needs_commit_, true)); |
| 54 } | 54 } |
| 55 | 55 |
| 56 } // namespace cc | 56 } // namespace cc |
| OLD | NEW |