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

Side by Side Diff: Source/core/layout/LayoutImage.h

Issue 1025603002: Revert of [S.P.] Don't draw frames of animated images that are offscreen. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/layout/LayoutBoxModelObject.cpp ('k') | Source/core/layout/LayoutImage.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2006 Allan Sandfeld Jensen (kde@carewolf.com) 4 * (C) 2006 Allan Sandfeld Jensen (kde@carewolf.com)
5 * (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 5 * (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 77
78 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override; 78 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override;
79 79
80 virtual void paint(const PaintInfo&, const LayoutPoint&) override final; 80 virtual void paint(const PaintInfo&, const LayoutPoint&) override final;
81 81
82 virtual void layout() override; 82 virtual void layout() override;
83 virtual bool updateImageLoadingPriorities() override final; 83 virtual bool updateImageLoadingPriorities() override final;
84 84
85 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutImage || LayoutReplaced::isOfType(type); } 85 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutImage || LayoutReplaced::isOfType(type); }
86 86
87 virtual PaintInvalidationReason invalidatePaintIfNeeded(const PaintInvalidat ionState&, const LayoutBoxModelObject&) override;
88
89 private: 87 private:
90 virtual bool isImage() const override { return true; } 88 virtual bool isImage() const override { return true; }
91 89
92 virtual void paintReplaced(const PaintInfo&, const LayoutPoint&) override; 90 virtual void paintReplaced(const PaintInfo&, const LayoutPoint&) override;
93 91
94 virtual bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned maxDepthToTest) const override final; 92 virtual bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned maxDepthToTest) const override final;
95 virtual bool computeBackgroundIsKnownToBeObscured() override final; 93 virtual bool computeBackgroundIsKnownToBeObscured() override final;
96 94
97 virtual bool backgroundShouldAlwaysBeClipped() const override { return true; } 95 virtual bool backgroundShouldAlwaysBeClipped() const override { return true; }
98 96
99 virtual LayoutUnit minimumReplacedHeight() const override; 97 virtual LayoutUnit minimumReplacedHeight() const override;
100 98
101 virtual void notifyFinished(Resource*) override final; 99 virtual void notifyFinished(Resource*) override final;
102 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct ion) override final; 100 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct ion) override final;
103 101
104 virtual bool boxShadowShouldBeAppliedToBackground(BackgroundBleedAvoidance, InlineFlowBox*) const override final; 102 virtual bool boxShadowShouldBeAppliedToBackground(BackgroundBleedAvoidance, InlineFlowBox*) const override final;
105 103
106 void invalidatePaintAndMarkForLayoutIfNeeded(); 104 void invalidatePaintAndMarkForLayoutIfNeeded();
107 void updateIntrinsicSizeIfNeeded(const LayoutSize&); 105 void updateIntrinsicSizeIfNeeded(const LayoutSize&);
108 // Update the size of the image to be rendered. Object-fit may cause this to be different from the CSS box's content rect. 106 // Update the size of the image to be rendered. Object-fit may cause this to be different from the CSS box's content rect.
109 void updateInnerContentRect(); 107 void updateInnerContentRect();
110 108
111 // The given rect is in the local coordinate space of the LayoutImage.
112 bool rectIntersectsVisibleViewport(const LayoutRect&);
113
114 // Text to display as long as the image isn't available. 109 // Text to display as long as the image isn't available.
115 OwnPtr<LayoutImageResource> m_imageResource; 110 OwnPtr<LayoutImageResource> m_imageResource;
116 bool m_didIncrementVisuallyNonEmptyPixelCount; 111 bool m_didIncrementVisuallyNonEmptyPixelCount;
117 bool m_isGeneratedContent; 112 bool m_isGeneratedContent;
118 float m_imageDevicePixelRatio; 113 float m_imageDevicePixelRatio;
119 }; 114 };
120 115
121 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutImage, isLayoutImage()); 116 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutImage, isLayoutImage());
122 117
123 } // namespace blink 118 } // namespace blink
124 119
125 #endif // LayoutImage_h 120 #endif // LayoutImage_h
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutBoxModelObject.cpp ('k') | Source/core/layout/LayoutImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698