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

Unified Diff: third_party/WebKit/Source/platform/testing/PaintPropertyTestHelpers.h

Issue 2657863004: Move scroll paint property nodes to be owned by the transform tree (Closed)
Patch Set: Rebase & remove parens Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/testing/PaintPropertyTestHelpers.h
diff --git a/third_party/WebKit/Source/platform/testing/PaintPropertyTestHelpers.h b/third_party/WebKit/Source/platform/testing/PaintPropertyTestHelpers.h
index 128cd551fe9d1467b6b8c4e1c9a6480694c5153c..b59ae1268b740d8dce0aef86bda08663466d4203 100644
--- a/third_party/WebKit/Source/platform/testing/PaintPropertyTestHelpers.h
+++ b/third_party/WebKit/Source/platform/testing/PaintPropertyTestHelpers.h
@@ -5,7 +5,6 @@
#include "platform/graphics/paint/ClipPaintPropertyNode.h"
#include "platform/graphics/paint/EffectPaintPropertyNode.h"
#include "platform/graphics/paint/PaintChunkProperties.h"
-#include "platform/graphics/paint/ScrollPaintPropertyNode.h"
#include "platform/graphics/paint/TransformPaintPropertyNode.h"
namespace blink {
@@ -24,9 +23,9 @@ static inline PassRefPtr<EffectPaintPropertyNode> createOpacityOnlyEffect(
}
static inline PaintChunkProperties defaultPaintChunkProperties() {
- PropertyTreeState propertyTreeState(
- TransformPaintPropertyNode::root(), ClipPaintPropertyNode::root(),
- EffectPaintPropertyNode::root(), ScrollPaintPropertyNode::root());
+ PropertyTreeState propertyTreeState(TransformPaintPropertyNode::root(),
+ ClipPaintPropertyNode::root(),
+ EffectPaintPropertyNode::root());
PaintChunkProperties defaultProperties(propertyTreeState);
return defaultProperties;

Powered by Google App Engine
This is Rietveld 408576698