OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> |
3 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. |
4 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 12 matching lines...) Expand all Loading... |
23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 */ | 26 */ |
27 | 27 |
28 #include "core/svg/graphics/SVGImage.h" | 28 #include "core/svg/graphics/SVGImage.h" |
29 | 29 |
30 #include "core/animation/DocumentTimeline.h" | 30 #include "core/animation/DocumentTimeline.h" |
31 #include "core/dom/NodeTraversal.h" | 31 #include "core/dom/NodeTraversal.h" |
32 #include "core/dom/shadow/FlatTreeTraversal.h" | 32 #include "core/dom/shadow/FlatTreeTraversal.h" |
33 #include "core/frame/Deprecation.h" | |
34 #include "core/frame/FrameView.h" | 33 #include "core/frame/FrameView.h" |
35 #include "core/frame/LocalFrame.h" | 34 #include "core/frame/LocalFrame.h" |
36 #include "core/frame/Settings.h" | 35 #include "core/frame/Settings.h" |
37 #include "core/style/ComputedStyle.h" | 36 #include "core/style/ComputedStyle.h" |
38 #include "core/layout/svg/LayoutSVGRoot.h" | 37 #include "core/layout/svg/LayoutSVGRoot.h" |
39 #include "core/loader/FrameLoadRequest.h" | 38 #include "core/loader/FrameLoadRequest.h" |
40 #include "core/paint/FloatClipRecorder.h" | 39 #include "core/paint/FloatClipRecorder.h" |
41 #include "core/paint/TransformRecorder.h" | 40 #include "core/paint/TransformRecorder.h" |
42 #include "core/svg/SVGDocumentExtensions.h" | 41 #include "core/svg/SVGDocumentExtensions.h" |
43 #include "core/svg/SVGFEImageElement.h" | 42 #include "core/svg/SVGFEImageElement.h" |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 | 473 |
475 SVGImageChromeClient& SVGImage::chromeClientForTesting() | 474 SVGImageChromeClient& SVGImage::chromeClientForTesting() |
476 { | 475 { |
477 return *m_chromeClient; | 476 return *m_chromeClient; |
478 } | 477 } |
479 | 478 |
480 void SVGImage::updateUseCounters(Document& document) const | 479 void SVGImage::updateUseCounters(Document& document) const |
481 { | 480 { |
482 if (SVGSVGElement* rootElement = svgRootElement(m_page.get())) { | 481 if (SVGSVGElement* rootElement = svgRootElement(m_page.get())) { |
483 if (rootElement->timeContainer()->hasAnimations()) | 482 if (rootElement->timeContainer()->hasAnimations()) |
484 Deprecation::countDeprecation(document, UseCounter::SVGSMILAnimation
InImageRegardlessOfCache); | 483 UseCounter::count(document, UseCounter::SVGSMILAnimationInImageRegar
dlessOfCache); |
485 } | 484 } |
486 } | 485 } |
487 | 486 |
488 Image::SizeAvailability SVGImage::dataChanged(bool allDataReceived) | 487 Image::SizeAvailability SVGImage::dataChanged(bool allDataReceived) |
489 { | 488 { |
490 TRACE_EVENT0("blink", "SVGImage::dataChanged"); | 489 TRACE_EVENT0("blink", "SVGImage::dataChanged"); |
491 | 490 |
492 // Don't do anything if is an empty image. | 491 // Don't do anything if is an empty image. |
493 if (!data()->size()) | 492 if (!data()->size()) |
494 return SizeAvailable; | 493 return SizeAvailable; |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 | 566 |
568 return m_page ? SizeAvailable : SizeUnavailable; | 567 return m_page ? SizeAvailable : SizeUnavailable; |
569 } | 568 } |
570 | 569 |
571 String SVGImage::filenameExtension() const | 570 String SVGImage::filenameExtension() const |
572 { | 571 { |
573 return "svg"; | 572 return "svg"; |
574 } | 573 } |
575 | 574 |
576 } // namespace blink | 575 } // namespace blink |
OLD | NEW |