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

Side by Side Diff: Source/core/rendering/RenderLayer.h

Issue 354613003: Properly repaint RenderLayer's descendants when it moves (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add test expectations Created 6 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 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 598
599 void dirtyAncestorChainVisibleDescendantStatus(); 599 void dirtyAncestorChainVisibleDescendantStatus();
600 void setAncestorChainHasVisibleDescendant(); 600 void setAncestorChainHasVisibleDescendant();
601 601
602 void updateTransform(const RenderStyle* oldStyle, RenderStyle* newStyle); 602 void updateTransform(const RenderStyle* oldStyle, RenderStyle* newStyle);
603 603
604 void dirty3DTransformedDescendantStatus(); 604 void dirty3DTransformedDescendantStatus();
605 // Both updates the status, and returns true if descendants of this have 3d. 605 // Both updates the status, and returns true if descendants of this have 3d.
606 bool update3DTransformedDescendantStatus(); 606 bool update3DTransformedDescendantStatus();
607 607
608 void markDescendantLayersMayNeedPaintInvalidation();
609
608 void updateOrRemoveFilterClients(); 610 void updateOrRemoveFilterClients();
609 611
610 LayoutRect paintingExtent(const RenderLayer* rootLayer, const LayoutRect& pa intDirtyRect, const LayoutSize& subPixelAccumulation, PaintBehavior); 612 LayoutRect paintingExtent(const RenderLayer* rootLayer, const LayoutRect& pa intDirtyRect, const LayoutSize& subPixelAccumulation, PaintBehavior);
611 613
612 void updatePagination(); 614 void updatePagination();
613 615
614 // FIXME: Temporary. Remove when new columns come online. 616 // FIXME: Temporary. Remove when new columns come online.
615 bool useRegionBasedColumns() const; 617 bool useRegionBasedColumns() const;
616 618
617 LayerType m_layerType; 619 LayerType m_layerType;
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 732
731 } // namespace WebCore 733 } // namespace WebCore
732 734
733 #ifndef NDEBUG 735 #ifndef NDEBUG
734 // Outside the WebCore namespace for ease of invocation from gdb. 736 // Outside the WebCore namespace for ease of invocation from gdb.
735 void showLayerTree(const WebCore::RenderLayer*); 737 void showLayerTree(const WebCore::RenderLayer*);
736 void showLayerTree(const WebCore::RenderObject*); 738 void showLayerTree(const WebCore::RenderObject*);
737 #endif 739 #endif
738 740
739 #endif // RenderLayer_h 741 #endif // RenderLayer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698