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

Side by Side Diff: Source/core/paint/DeprecatedPaintLayerPaintingInfo.h

Issue 1159113003: [SP] Don't invalidate the whole scrolled tree (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: NeedsRebaselines (see previous try result); Comments Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. 3 * Copyright (C) 2013 Intel Corporation. All rights reserved.
4 * 4 *
5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
6 * 6 *
7 * Other contributors: 7 * Other contributors:
8 * Robert O'Callahan <roc+@cs.cmu.edu> 8 * Robert O'Callahan <roc+@cs.cmu.edu>
9 * David Baron <dbaron@fas.harvard.edu> 9 * David Baron <dbaron@fas.harvard.edu>
10 * Christian Biesinger <cbiesinger@web.de> 10 * Christian Biesinger <cbiesinger@web.de>
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 , paintingRoot(inPaintingRoot) 80 , paintingRoot(inPaintingRoot)
81 , paintDirtyRect(inDirtyRect) 81 , paintDirtyRect(inDirtyRect)
82 , subPixelAccumulation(inSubPixelAccumulation) 82 , subPixelAccumulation(inSubPixelAccumulation)
83 , paintBehavior(inPaintBehavior) 83 , paintBehavior(inPaintBehavior)
84 , clipToDirtyRect(true) 84 , clipToDirtyRect(true)
85 { } 85 { }
86 DeprecatedPaintLayer* rootLayer; 86 DeprecatedPaintLayer* rootLayer;
87 LayoutObject* paintingRoot; // only paint descendants of this object 87 LayoutObject* paintingRoot; // only paint descendants of this object
88 LayoutRect paintDirtyRect; // relative to rootLayer; 88 LayoutRect paintDirtyRect; // relative to rootLayer;
89 LayoutSize subPixelAccumulation; 89 LayoutSize subPixelAccumulation;
90 IntSize scrollOffsetAccumulation;
90 PaintBehavior paintBehavior; 91 PaintBehavior paintBehavior;
91 bool clipToDirtyRect; 92 bool clipToDirtyRect;
92 }; 93 };
93 94
94 } // namespace blink 95 } // namespace blink
95 96
96 #endif // DeprecatedPaintLayerPaintingInfo_h 97 #endif // DeprecatedPaintLayerPaintingInfo_h
OLDNEW
« no previous file with comments | « Source/core/paint/DeprecatedPaintLayerPainter.cpp ('k') | Source/core/paint/DeprecatedPaintLayerScrollableArea.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698