| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 <stddef.h> | 5 #include <stddef.h> |
| 6 | 6 |
| 7 #include <unordered_map> | 7 #include <unordered_map> |
| 8 | 8 |
| 9 #include "base/threading/thread_task_runner_handle.h" | 9 #include "base/threading/thread_task_runner_handle.h" |
| 10 #include "cc/animation/animation_host.h" | 10 #include "cc/animation/animation_host.h" |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 }; | 98 }; |
| 99 | 99 |
| 100 class ScrollbarLayerTest : public testing::Test { | 100 class ScrollbarLayerTest : public testing::Test { |
| 101 public: | 101 public: |
| 102 ScrollbarLayerTest() { | 102 ScrollbarLayerTest() { |
| 103 layer_tree_settings_.single_thread_proxy_scheduler = false; | 103 layer_tree_settings_.single_thread_proxy_scheduler = false; |
| 104 layer_tree_settings_.use_zero_copy = true; | 104 layer_tree_settings_.use_zero_copy = true; |
| 105 layer_tree_settings_.scrollbar_animator = LayerTreeSettings::LINEAR_FADE; | 105 layer_tree_settings_.scrollbar_animator = LayerTreeSettings::LINEAR_FADE; |
| 106 layer_tree_settings_.scrollbar_fade_delay_ms = 20; | 106 layer_tree_settings_.scrollbar_fade_delay_ms = 20; |
| 107 layer_tree_settings_.scrollbar_fade_duration_ms = 20; | 107 layer_tree_settings_.scrollbar_fade_duration_ms = 20; |
| 108 layer_tree_settings_.verify_transform_tree_calculations = true; | |
| 109 layer_tree_settings_.verify_clip_tree_calculations = true; | 108 layer_tree_settings_.verify_clip_tree_calculations = true; |
| 110 | 109 |
| 111 scrollbar_layer_id_ = -1; | 110 scrollbar_layer_id_ = -1; |
| 112 | 111 |
| 113 LayerTreeHostInProcess::InitParams params; | 112 LayerTreeHostInProcess::InitParams params; |
| 114 params.client = &fake_client_; | 113 params.client = &fake_client_; |
| 115 params.settings = &layer_tree_settings_; | 114 params.settings = &layer_tree_settings_; |
| 116 params.task_graph_runner = &task_graph_runner_; | 115 params.task_graph_runner = &task_graph_runner_; |
| 117 params.animation_host = | 116 params.animation_host = |
| 118 AnimationHost::CreateForTesting(ThreadInstance::MAIN); | 117 AnimationHost::CreateForTesting(ThreadInstance::MAIN); |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 EffectNode* node = | 634 EffectNode* node = |
| 636 host_impl->active_tree()->property_trees()->effect_tree.Node( | 635 host_impl->active_tree()->property_trees()->effect_tree.Node( |
| 637 scrollbar_layer->effect_tree_index()); | 636 scrollbar_layer->effect_tree_index()); |
| 638 EXPECT_EQ(node->opacity, 1.f); | 637 EXPECT_EQ(node->opacity, 1.f); |
| 639 } | 638 } |
| 640 | 639 |
| 641 class ScrollbarLayerSolidColorThumbTest : public testing::Test { | 640 class ScrollbarLayerSolidColorThumbTest : public testing::Test { |
| 642 public: | 641 public: |
| 643 ScrollbarLayerSolidColorThumbTest() { | 642 ScrollbarLayerSolidColorThumbTest() { |
| 644 LayerTreeSettings layer_tree_settings; | 643 LayerTreeSettings layer_tree_settings; |
| 645 layer_tree_settings.verify_transform_tree_calculations = true; | |
| 646 layer_tree_settings.verify_clip_tree_calculations = true; | 644 layer_tree_settings.verify_clip_tree_calculations = true; |
| 647 host_impl_.reset(new FakeLayerTreeHostImpl( | 645 host_impl_.reset(new FakeLayerTreeHostImpl( |
| 648 layer_tree_settings, &task_runner_provider_, &shared_bitmap_manager_, | 646 layer_tree_settings, &task_runner_provider_, &shared_bitmap_manager_, |
| 649 &task_graph_runner_)); | 647 &task_graph_runner_)); |
| 650 | 648 |
| 651 const int kThumbThickness = 3; | 649 const int kThumbThickness = 3; |
| 652 const int kTrackStart = 0; | 650 const int kTrackStart = 0; |
| 653 const bool kIsLeftSideVerticalScrollbar = false; | 651 const bool kIsLeftSideVerticalScrollbar = false; |
| 654 const bool kIsOverlayScrollbar = false; | 652 const bool kIsOverlayScrollbar = false; |
| 655 | 653 |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1119 TestScale(gfx::Rect(1240, 0, 15, 1333), 2.7754839f); | 1117 TestScale(gfx::Rect(1240, 0, 15, 1333), 2.7754839f); |
| 1120 TestScale(gfx::Rect(1240, 0, 15, 677), 2.46677136f); | 1118 TestScale(gfx::Rect(1240, 0, 15, 677), 2.46677136f); |
| 1121 | 1119 |
| 1122 // Horizontal Scrollbars. | 1120 // Horizontal Scrollbars. |
| 1123 TestScale(gfx::Rect(0, 1240, 1333, 15), 2.7754839f); | 1121 TestScale(gfx::Rect(0, 1240, 1333, 15), 2.7754839f); |
| 1124 TestScale(gfx::Rect(0, 1240, 677, 15), 2.46677136f); | 1122 TestScale(gfx::Rect(0, 1240, 677, 15), 2.46677136f); |
| 1125 } | 1123 } |
| 1126 | 1124 |
| 1127 } // namespace | 1125 } // namespace |
| 1128 } // namespace cc | 1126 } // namespace cc |
| OLD | NEW |