OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef ScrollbarTestSuite_h | 5 #ifndef ScrollbarTestSuite_h |
6 #define ScrollbarTestSuite_h | 6 #define ScrollbarTestSuite_h |
7 | 7 |
8 #include "platform/heap/GarbageCollected.h" | 8 #include "platform/heap/GarbageCollected.h" |
9 #include "platform/scroll/ScrollableArea.h" | 9 #include "platform/scroll/ScrollableArea.h" |
10 #include "platform/scroll/Scrollbar.h" | 10 #include "platform/scroll/Scrollbar.h" |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
75 | 75 |
76 private: | 76 private: |
77 void setMaximumScrollOffset(const ScrollOffset& maximumScrollOffset) { | 77 void setMaximumScrollOffset(const ScrollOffset& maximumScrollOffset) { |
78 m_maximumScrollOffset = maximumScrollOffset; | 78 m_maximumScrollOffset = maximumScrollOffset; |
79 } | 79 } |
80 | 80 |
81 ScrollOffset m_scrollOffset; | 81 ScrollOffset m_scrollOffset; |
82 ScrollOffset m_maximumScrollOffset; | 82 ScrollOffset m_maximumScrollOffset; |
83 }; | 83 }; |
84 | 84 |
85 class ScrollbarTestSuite : public testing::Test { | 85 class ScrollbarTestSuite : public testing::Test { |
Takashi Toyoshima
2017/01/12 08:56:13
This class is used in some tests in platform/scrol
haraken
2017/01/12 11:21:00
Yeah, maybe we want to remove it in a follow-up CL
Takashi Toyoshima
2017/01/12 12:13:01
Acknowledged.
| |
86 public: | 86 public: |
87 ScrollbarTestSuite() {} | 87 ScrollbarTestSuite() {} |
88 | 88 |
89 void SetUp() override { | 89 void SetUp() override { |
90 TestingPlatformSupport::Config config; | 90 m_config.compositorSupport = Platform::current()->compositorSupport(); |
91 config.compositorSupport = Platform::current()->compositorSupport(); | |
92 m_fakePlatform = | |
93 WTF::makeUnique<TestingPlatformSupportWithMockScheduler>(config); | |
94 } | 91 } |
95 | 92 |
96 void TearDown() override { m_fakePlatform = nullptr; } | 93 protected: |
97 | 94 TestingPlatformSupport::Config m_config; |
98 private: | |
99 std::unique_ptr<TestingPlatformSupportWithMockScheduler> m_fakePlatform; | |
100 }; | 95 }; |
101 | 96 |
102 } // namespace blink | 97 } // namespace blink |
103 | 98 |
104 #endif | 99 #endif |
OLD | NEW |