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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.h

Issue 1826013002: Enable compositing for opaque scrolling content on low DPI screens (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix date (for real this time) 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "core/frame/FrameView.h"
6 #include "core/layout/LayoutBoxModelObject.h"
7 #include "core/layout/LayoutTestHelper.h"
8 #include "core/layout/api/LayoutViewItem.h"
9 #include "core/paint/PaintLayer.h"
10 #include "core/paint/PaintLayerScrollableArea.h"
11 #include "testing/gtest/include/gtest/gtest.h"
12
13 namespace blink {
14
15 class PaintLayerScrollableAreaTest : public RenderingTest {
16 public:
17 PaintLayerScrollableAreaTest()
18 : RenderingTest(SingleChildFrameLoaderClient::create())
19 { }
20
21 private:
22 void SetUp() override
23 {
24 RenderingTest::SetUp();
25 enableCompositing();
26 }
27
28 void TearDown() override
29 {
30 RenderingTest::TearDown();
31 }
32 };
33
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698