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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintLayer.h

Issue 1746283002: Rename enums/functions that collide in chromium style in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: get-names-13-platform: . Created 4 years, 9 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
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 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 bool hasAncestorWithClipPath() const { ASSERT(!m_needsAncestorDependentCompo sitingInputsUpdate); return m_hasAncestorWithClipPath; } 589 bool hasAncestorWithClipPath() const { ASSERT(!m_needsAncestorDependentCompo sitingInputsUpdate); return m_hasAncestorWithClipPath; }
590 bool hasDescendantWithClipPath() const { ASSERT(!m_needsDescendantDependentC ompositingInputsUpdate); return m_hasDescendantWithClipPath; } 590 bool hasDescendantWithClipPath() const { ASSERT(!m_needsDescendantDependentC ompositingInputsUpdate); return m_hasDescendantWithClipPath; }
591 bool hasNonIsolatedDescendantWithBlendMode() const; 591 bool hasNonIsolatedDescendantWithBlendMode() const;
592 592
593 bool lostGroupedMapping() const { ASSERT(isAllowedToQueryCompositingState()) ; return m_lostGroupedMapping; } 593 bool lostGroupedMapping() const { ASSERT(isAllowedToQueryCompositingState()) ; return m_lostGroupedMapping; }
594 void setLostGroupedMapping(bool b) { m_lostGroupedMapping = b; } 594 void setLostGroupedMapping(bool b) { m_lostGroupedMapping = b; }
595 595
596 CompositingReasons getCompositingReasons() const { ASSERT(isAllowedToQueryCo mpositingState()); return m_rareData ? m_rareData->compositingReasons : Composit ingReasonNone; } 596 CompositingReasons getCompositingReasons() const { ASSERT(isAllowedToQueryCo mpositingState()); return m_rareData ? m_rareData->compositingReasons : Composit ingReasonNone; }
597 void setCompositingReasons(CompositingReasons, CompositingReasons mask = Com positingReasonAll); 597 void setCompositingReasons(CompositingReasons, CompositingReasons mask = Com positingReasonAll);
598 598
599 SquashingDisallowedReasons squashingDisallowedReasons() const { ASSERT(isAll owedToQueryCompositingState()); return m_rareData ? m_rareData->squashingDisallo wedReasons : SquashingDisallowedReasonsNone; } 599 SquashingDisallowedReasons getSquashingDisallowedReasons() const { ASSERT(is AllowedToQueryCompositingState()); return m_rareData ? m_rareData->squashingDisa llowedReasons : SquashingDisallowedReasonsNone; }
600 void setSquashingDisallowedReasons(SquashingDisallowedReasons); 600 void setSquashingDisallowedReasons(SquashingDisallowedReasons);
601 601
602 bool hasCompositingDescendant() const { ASSERT(isAllowedToQueryCompositingSt ate()); return m_hasCompositingDescendant; } 602 bool hasCompositingDescendant() const { ASSERT(isAllowedToQueryCompositingSt ate()); return m_hasCompositingDescendant; }
603 void setHasCompositingDescendant(bool); 603 void setHasCompositingDescendant(bool);
604 604
605 bool shouldIsolateCompositedDescendants() const { ASSERT(isAllowedToQueryCom positingState()); return m_shouldIsolateCompositedDescendants; } 605 bool shouldIsolateCompositedDescendants() const { ASSERT(isAllowedToQueryCom positingState()); return m_shouldIsolateCompositedDescendants; }
606 void setShouldIsolateCompositedDescendants(bool); 606 void setShouldIsolateCompositedDescendants(bool);
607 607
608 void updateDescendantDependentFlags(); 608 void updateDescendantDependentFlags();
609 609
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 872
873 } // namespace blink 873 } // namespace blink
874 874
875 #ifndef NDEBUG 875 #ifndef NDEBUG
876 // Outside the WebCore namespace for ease of invocation from gdb. 876 // Outside the WebCore namespace for ease of invocation from gdb.
877 void showLayerTree(const blink::PaintLayer*); 877 void showLayerTree(const blink::PaintLayer*);
878 void showLayerTree(const blink::LayoutObject*); 878 void showLayerTree(const blink::LayoutObject*);
879 #endif 879 #endif
880 880
881 #endif // Layer_h 881 #endif // Layer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698