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

Side by Side Diff: cc/layers/scrollbar_layer_unittest.cc

Issue 2191983002: cc : Use dynamically calculated target space transforms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 4 years, 4 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
« no previous file with comments | « cc/layers/picture_layer_unittest.cc ('k') | cc/layers/texture_layer_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 }; 100 };
101 101
102 class ScrollbarLayerTest : public testing::Test { 102 class ScrollbarLayerTest : public testing::Test {
103 public: 103 public:
104 ScrollbarLayerTest() { 104 ScrollbarLayerTest() {
105 layer_tree_settings_.single_thread_proxy_scheduler = false; 105 layer_tree_settings_.single_thread_proxy_scheduler = false;
106 layer_tree_settings_.use_zero_copy = true; 106 layer_tree_settings_.use_zero_copy = true;
107 layer_tree_settings_.scrollbar_animator = LayerTreeSettings::LINEAR_FADE; 107 layer_tree_settings_.scrollbar_animator = LayerTreeSettings::LINEAR_FADE;
108 layer_tree_settings_.scrollbar_fade_delay_ms = 20; 108 layer_tree_settings_.scrollbar_fade_delay_ms = 20;
109 layer_tree_settings_.scrollbar_fade_duration_ms = 20; 109 layer_tree_settings_.scrollbar_fade_duration_ms = 20;
110 layer_tree_settings_.verify_transform_tree_calculations = true;
111 layer_tree_settings_.verify_clip_tree_calculations = true;
110 112
111 scrollbar_layer_id_ = -1; 113 scrollbar_layer_id_ = -1;
112 114
113 LayerTreeHost::InitParams params; 115 LayerTreeHost::InitParams params;
114 params.client = &fake_client_; 116 params.client = &fake_client_;
115 params.settings = &layer_tree_settings_; 117 params.settings = &layer_tree_settings_;
116 params.task_graph_runner = &task_graph_runner_; 118 params.task_graph_runner = &task_graph_runner_;
117 params.animation_host = 119 params.animation_host =
118 AnimationHost::CreateForTesting(ThreadInstance::MAIN); 120 AnimationHost::CreateForTesting(ThreadInstance::MAIN);
119 121
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 EffectNode* node = 627 EffectNode* node =
626 host_impl->active_tree()->property_trees()->effect_tree.Node( 628 host_impl->active_tree()->property_trees()->effect_tree.Node(
627 scrollbar_layer->effect_tree_index()); 629 scrollbar_layer->effect_tree_index());
628 EXPECT_EQ(node->opacity, 1.f); 630 EXPECT_EQ(node->opacity, 1.f);
629 } 631 }
630 632
631 class ScrollbarLayerSolidColorThumbTest : public testing::Test { 633 class ScrollbarLayerSolidColorThumbTest : public testing::Test {
632 public: 634 public:
633 ScrollbarLayerSolidColorThumbTest() { 635 ScrollbarLayerSolidColorThumbTest() {
634 LayerTreeSettings layer_tree_settings; 636 LayerTreeSettings layer_tree_settings;
637 layer_tree_settings.verify_transform_tree_calculations = true;
638 layer_tree_settings.verify_clip_tree_calculations = true;
635 host_impl_.reset(new FakeLayerTreeHostImpl( 639 host_impl_.reset(new FakeLayerTreeHostImpl(
636 layer_tree_settings, &task_runner_provider_, &shared_bitmap_manager_, 640 layer_tree_settings, &task_runner_provider_, &shared_bitmap_manager_,
637 &task_graph_runner_)); 641 &task_graph_runner_));
638 642
639 const int kThumbThickness = 3; 643 const int kThumbThickness = 3;
640 const int kTrackStart = 0; 644 const int kTrackStart = 0;
641 const bool kIsLeftSideVerticalScrollbar = false; 645 const bool kIsLeftSideVerticalScrollbar = false;
642 const bool kIsOverlayScrollbar = false; 646 const bool kIsOverlayScrollbar = false;
643 647
644 horizontal_scrollbar_layer_ = 648 horizontal_scrollbar_layer_ =
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
1150 TestScale(gfx::Rect(1240, 0, 15, 1333), 2.7754839f); 1154 TestScale(gfx::Rect(1240, 0, 15, 1333), 2.7754839f);
1151 TestScale(gfx::Rect(1240, 0, 15, 677), 2.46677136f); 1155 TestScale(gfx::Rect(1240, 0, 15, 677), 2.46677136f);
1152 1156
1153 // Horizontal Scrollbars. 1157 // Horizontal Scrollbars.
1154 TestScale(gfx::Rect(0, 1240, 1333, 15), 2.7754839f); 1158 TestScale(gfx::Rect(0, 1240, 1333, 15), 2.7754839f);
1155 TestScale(gfx::Rect(0, 1240, 677, 15), 2.46677136f); 1159 TestScale(gfx::Rect(0, 1240, 677, 15), 2.46677136f);
1156 } 1160 }
1157 1161
1158 } // namespace 1162 } // namespace
1159 } // namespace cc 1163 } // namespace cc
OLDNEW
« no previous file with comments | « cc/layers/picture_layer_unittest.cc ('k') | cc/layers/texture_layer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698