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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/PaintChunkProperties.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/graphics/paint/PaintChunkProperties.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintChunkProperties.h b/third_party/WebKit/Source/platform/graphics/paint/PaintChunkProperties.h
index 77a80e604eb9ed024653db733ea71593d027caf9..b8687a198f1b29c53cb4d9ad31e27c49a269c8a5 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/PaintChunkProperties.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/PaintChunkProperties.h
@@ -14,7 +14,7 @@ namespace blink {
// The set of paint properties applying to a |PaintChunk|. These properties are
// not local-only paint style parameters such as color, but instead represent
-// the hierarchy of transforms, clips, effects, etc, that apply to a contiguous
+// the hierarchy of transforms, clips, and effects that apply to a contiguous
// chunk of display items. A single DisplayItemClient can generate multiple
// properties of the same type and this struct represents the total state of all
// properties for a given |PaintChunk|.
@@ -28,8 +28,7 @@ struct PaintChunkProperties {
: propertyTreeState(state), backfaceHidden(false) {}
PaintChunkProperties()
- : propertyTreeState(nullptr, nullptr, nullptr, nullptr),
- backfaceHidden(false) {}
+ : propertyTreeState(nullptr, nullptr, nullptr), backfaceHidden(false) {}
PropertyTreeState propertyTreeState;
bool backfaceHidden;

Powered by Google App Engine
This is Rietveld 408576698