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

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

Issue 2556013002: Fix paint property under-invalidation checking about reference filters (Closed)
Patch Set: - Created 4 years 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 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const; 562 bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const;
563 563
564 bool containsDirtyOverlayScrollbars() const { 564 bool containsDirtyOverlayScrollbars() const {
565 return m_containsDirtyOverlayScrollbars; 565 return m_containsDirtyOverlayScrollbars;
566 } 566 }
567 void setContainsDirtyOverlayScrollbars(bool dirtyScrollbars) { 567 void setContainsDirtyOverlayScrollbars(bool dirtyScrollbars) {
568 m_containsDirtyOverlayScrollbars = dirtyScrollbars; 568 m_containsDirtyOverlayScrollbars = dirtyScrollbars;
569 } 569 }
570 570
571 CompositorFilterOperations createCompositorFilterOperationsForFilter( 571 CompositorFilterOperations createCompositorFilterOperationsForFilter(
572 const ComputedStyle&); 572 const ComputedStyle&,
573 FilterOperations* = nullptr);
573 CompositorFilterOperations createCompositorFilterOperationsForBackdropFilter( 574 CompositorFilterOperations createCompositorFilterOperationsForBackdropFilter(
574 const ComputedStyle&); 575 const ComputedStyle&);
575 bool paintsWithFilters() const; 576 bool paintsWithFilters() const;
576 bool paintsWithBackdropFilters() const; 577 bool paintsWithBackdropFilters() const;
577 FilterEffect* lastFilterEffect() const; 578 FilterEffect* lastFilterEffect() const;
578 579
579 // Maps "forward" to determine which pixels in a destination rect are 580 // Maps "forward" to determine which pixels in a destination rect are
580 // affected by pixels in the source rect. 581 // affected by pixels in the source rect.
581 // See also FilterEffect::mapRect. 582 // See also FilterEffect::mapRect.
582 FloatRect mapRectForFilter(const FloatRect&) const; 583 FloatRect mapRectForFilter(const FloatRect&) const;
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
1234 1235
1235 } // namespace blink 1236 } // namespace blink
1236 1237
1237 #ifndef NDEBUG 1238 #ifndef NDEBUG
1238 // Outside the WebCore namespace for ease of invocation from gdb. 1239 // Outside the WebCore namespace for ease of invocation from gdb.
1239 CORE_EXPORT void showLayerTree(const blink::PaintLayer*); 1240 CORE_EXPORT void showLayerTree(const blink::PaintLayer*);
1240 CORE_EXPORT void showLayerTree(const blink::LayoutObject*); 1241 CORE_EXPORT void showLayerTree(const blink::LayoutObject*);
1241 #endif 1242 #endif
1242 1243
1243 #endif // Layer_h 1244 #endif // Layer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698