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

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

Issue 1162793003: Add CSS image-orientation: from-image (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Improved check Created 5 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
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 virtual void paint(const PaintInfo&, const LayoutPoint&) override final; 79 virtual void paint(const PaintInfo&, const LayoutPoint&) override final;
80 80
81 virtual void layout() override; 81 virtual void layout() override;
82 virtual bool updateImageLoadingPriorities() override final; 82 virtual bool updateImageLoadingPriorities() override final;
83 83
84 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutImage || LayoutReplaced::isOfType(type); } 84 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutImage || LayoutReplaced::isOfType(type); }
85 85
86 virtual void willBeDestroyed() override; 86 virtual void willBeDestroyed() override;
87 87
88 virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override;
89
88 private: 90 private:
89 virtual bool isImage() const override { return true; } 91 virtual bool isImage() const override { return true; }
90 92
91 virtual void paintReplaced(const PaintInfo&, const LayoutPoint&) override; 93 virtual void paintReplaced(const PaintInfo&, const LayoutPoint&) override;
92 94
93 virtual bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned maxDepthToTest) const override final; 95 virtual bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect, unsigned maxDepthToTest) const override final;
94 virtual bool computeBackgroundIsKnownToBeObscured() override final; 96 virtual bool computeBackgroundIsKnownToBeObscured() override final;
95 97
96 virtual bool backgroundShouldAlwaysBeClipped() const override { return true; } 98 virtual bool backgroundShouldAlwaysBeClipped() const override { return true; }
97 99
(...skipping 14 matching lines...) Expand all
112 bool m_didIncrementVisuallyNonEmptyPixelCount; 114 bool m_didIncrementVisuallyNonEmptyPixelCount;
113 bool m_isGeneratedContent; 115 bool m_isGeneratedContent;
114 float m_imageDevicePixelRatio; 116 float m_imageDevicePixelRatio;
115 }; 117 };
116 118
117 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutImage, isLayoutImage()); 119 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutImage, isLayoutImage());
118 120
119 } // namespace blink 121 } // namespace blink
120 122
121 #endif // LayoutImage_h 123 #endif // LayoutImage_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698