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

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

Issue 1149303002: Add a dirty bit for updateDescendantDependentFlags. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: try again. Created 5 years, 7 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 CompositingReasons compositingReasons() const { ASSERT(isAllowedToQueryCompo sitingState()); return m_compositingReasons; } 484 CompositingReasons compositingReasons() const { ASSERT(isAllowedToQueryCompo sitingState()); return m_compositingReasons; }
485 void setCompositingReasons(CompositingReasons, CompositingReasons mask = Com positingReasonAll); 485 void setCompositingReasons(CompositingReasons, CompositingReasons mask = Com positingReasonAll);
486 486
487 bool hasCompositingDescendant() const { ASSERT(isAllowedToQueryCompositingSt ate()); return m_hasCompositingDescendant; } 487 bool hasCompositingDescendant() const { ASSERT(isAllowedToQueryCompositingSt ate()); return m_hasCompositingDescendant; }
488 void setHasCompositingDescendant(bool); 488 void setHasCompositingDescendant(bool);
489 489
490 bool shouldIsolateCompositedDescendants() const { ASSERT(isAllowedToQueryCom positingState()); return m_shouldIsolateCompositedDescendants; } 490 bool shouldIsolateCompositedDescendants() const { ASSERT(isAllowedToQueryCom positingState()); return m_shouldIsolateCompositedDescendants; }
491 void setShouldIsolateCompositedDescendants(bool); 491 void setShouldIsolateCompositedDescendants(bool);
492 492
493 void updateDescendantDependentFlags(); 493 void updateDescendantDependentFlags();
494 void updateDescendantDependentFlagsForEntireSubtree();
495 494
496 void updateOrRemoveFilterEffectBuilder(); 495 void updateOrRemoveFilterEffectBuilder();
497 496
498 void updateSelfPaintingLayer(); 497 void updateSelfPaintingLayer();
499 498
500 DeprecatedPaintLayer* enclosingTransformedAncestor() const; 499 DeprecatedPaintLayer* enclosingTransformedAncestor() const;
501 LayoutPoint computeOffsetFromTransformedAncestor() const; 500 LayoutPoint computeOffsetFromTransformedAncestor() const;
502 501
503 void didUpdateNeedsCompositedScrolling(); 502 void didUpdateNeedsCompositedScrolling();
504 503
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 722
724 } // namespace blink 723 } // namespace blink
725 724
726 #ifndef NDEBUG 725 #ifndef NDEBUG
727 // Outside the WebCore namespace for ease of invocation from gdb. 726 // Outside the WebCore namespace for ease of invocation from gdb.
728 void showLayerTree(const blink::DeprecatedPaintLayer*); 727 void showLayerTree(const blink::DeprecatedPaintLayer*);
729 void showLayerTree(const blink::LayoutObject*); 728 void showLayerTree(const blink::LayoutObject*);
730 #endif 729 #endif
731 730
732 #endif // Layer_h 731 #endif // Layer_h
OLDNEW
« no previous file with comments | « Source/core/layout/compositing/DeprecatedPaintLayerCompositor.cpp ('k') | Source/core/paint/DeprecatedPaintLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698