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 15 matching lines...) Expand all Loading... |
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/FrameView.h" | 33 #include "core/frame/FrameView.h" |
34 #include "core/frame/LocalFrame.h" | 34 #include "core/frame/LocalFrame.h" |
35 #include "core/frame/Settings.h" | 35 #include "core/frame/Settings.h" |
36 #include "core/style/ComputedStyle.h" | |
37 #include "core/layout/svg/LayoutSVGRoot.h" | 36 #include "core/layout/svg/LayoutSVGRoot.h" |
38 #include "core/loader/FrameLoadRequest.h" | 37 #include "core/loader/FrameLoadRequest.h" |
39 #include "core/paint/FloatClipRecorder.h" | 38 #include "core/paint/FloatClipRecorder.h" |
40 #include "core/paint/TransformRecorder.h" | 39 #include "core/paint/TransformRecorder.h" |
| 40 #include "core/style/ComputedStyle.h" |
41 #include "core/svg/SVGDocumentExtensions.h" | 41 #include "core/svg/SVGDocumentExtensions.h" |
42 #include "core/svg/SVGFEImageElement.h" | 42 #include "core/svg/SVGFEImageElement.h" |
43 #include "core/svg/SVGImageElement.h" | 43 #include "core/svg/SVGImageElement.h" |
44 #include "core/svg/SVGSVGElement.h" | 44 #include "core/svg/SVGSVGElement.h" |
45 #include "core/svg/animation/SMILTimeContainer.h" | 45 #include "core/svg/animation/SMILTimeContainer.h" |
46 #include "core/svg/graphics/SVGImageChromeClient.h" | 46 #include "core/svg/graphics/SVGImageChromeClient.h" |
47 #include "platform/EventDispatchForbiddenScope.h" | 47 #include "platform/EventDispatchForbiddenScope.h" |
48 #include "platform/LengthFunctions.h" | 48 #include "platform/LengthFunctions.h" |
49 #include "platform/ScriptForbiddenScope.h" | 49 #include "platform/ScriptForbiddenScope.h" |
50 #include "platform/geometry/IntRect.h" | 50 #include "platform/geometry/IntRect.h" |
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 } | 626 } |
627 | 627 |
628 return m_page ? SizeAvailable : SizeUnavailable; | 628 return m_page ? SizeAvailable : SizeUnavailable; |
629 } | 629 } |
630 | 630 |
631 String SVGImage::filenameExtension() const { | 631 String SVGImage::filenameExtension() const { |
632 return "svg"; | 632 return "svg"; |
633 } | 633 } |
634 | 634 |
635 } // namespace blink | 635 } // namespace blink |
OLD | NEW |