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

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

Issue 1515963005: SVGImage: check requestCount() to check all subresources are loaded (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: auto-Rebase Created 4 years, 8 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) 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 } 50 }
51 51
52 static bool isInSVGImage(const Node*); 52 static bool isInSVGImage(const Node*);
53 53
54 LayoutReplaced* embeddedReplacedContent() const; 54 LayoutReplaced* embeddedReplacedContent() 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_intrinsicSize; } 58 IntSize size() const override { return m_intrinsicSize; }
59 59
60 void assertSubresourcesLoaded() const;
60 bool currentFrameHasSingleSecurityOrigin() const override; 61 bool currentFrameHasSingleSecurityOrigin() const override;
61 62
62 void startAnimation(CatchUpAnimation = CatchUp) override; 63 void startAnimation(CatchUpAnimation = CatchUp) override;
63 void stopAnimation() override; 64 void stopAnimation() override;
64 void resetAnimation() override; 65 void resetAnimation() override;
65 66
66 // Advances an animated image. This will trigger an animation update for CSS 67 // Advances an animated image. This will trigger an animation update for CSS
67 // and advance the SMIL timeline by one frame. 68 // and advance the SMIL timeline by one frame.
68 void advanceAnimationForTesting() override; 69 void advanceAnimationForTesting() override;
69 70
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 m_image->setImageObserver(m_observer); 147 m_image->setImageObserver(m_observer);
147 } 148 }
148 private: 149 private:
149 Image* m_image; 150 Image* m_image;
150 RawPtrWillBeMember<ImageObserver> m_observer; 151 RawPtrWillBeMember<ImageObserver> m_observer;
151 }; 152 };
152 153
153 } // namespace blink 154 } // namespace blink
154 155
155 #endif // SVGImage_h 156 #endif // SVGImage_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/ImageLoader.cpp ('k') | third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698