Chromium Code Reviews

Side by Side Diff: third_party/WebKit/Source/core/svg/graphics/SVGImage.h

Issue 1732563007: [NOT FOR COMMIT] Pass defaultObjectSize to get image size (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org>
3 * Copyright (C) 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2009 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 37 matching lines...)
48 { 48 {
49 return adoptRef(new SVGImage(observer)); 49 return adoptRef(new SVGImage(observer));
50 } 50 }
51 51
52 static bool isInSVGImage(const Node*); 52 static bool isInSVGImage(const Node*);
53 53
54 LayoutBox* embeddedContentBox() const; 54 LayoutBox* embeddedContentBox() const;
55 55
56 bool isSVGImage() const override { return true; } 56 bool isSVGImage() const override { return true; }
57 bool isTextureBacked() override { return false; } 57 bool isTextureBacked() override { return false; }
58 IntSize size() const override { return m_concreteObjectSize; } 58 IntSize concreteObjectSize(const FloatSize& defaultObjectSize) const overrid e;
59 59
60 bool currentFrameHasSingleSecurityOrigin() const override; 60 bool currentFrameHasSingleSecurityOrigin() const override;
61 61
62 void startAnimation(CatchUpAnimation = CatchUp) override; 62 void startAnimation(CatchUpAnimation = CatchUp) override;
63 void stopAnimation() override; 63 void stopAnimation() override;
64 void resetAnimation() override; 64 void resetAnimation() override;
65 65
66 // Advances an animated image. This will trigger an animation update for CSS 66 // Advances an animated image. This will trigger an animation update for CSS
67 // and advance the SMIL timeline by one frame. 67 // and advance the SMIL timeline by one frame.
68 void advanceAnimationForTesting() override; 68 void advanceAnimationForTesting() override;
(...skipping 79 matching lines...)
148 m_image->setImageObserver(m_observer); 148 m_image->setImageObserver(m_observer);
149 } 149 }
150 private: 150 private:
151 Image* m_image; 151 Image* m_image;
152 RawPtrWillBeMember<ImageObserver> m_observer; 152 RawPtrWillBeMember<ImageObserver> m_observer;
153 }; 153 };
154 154
155 } // namespace blink 155 } // namespace blink
156 156
157 #endif // SVGImage_h 157 #endif // SVGImage_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/StylePendingImage.h ('k') | third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine