| Index: Source/core/svg/graphics/SVGImageForContainer.h
 | 
| diff --git a/Source/core/svg/graphics/SVGImageForContainer.h b/Source/core/svg/graphics/SVGImageForContainer.h
 | 
| index aea94bc459b158e38fc97a650e9ac3be33c3850f..1333acfcd6f0ad11e9d87cd0ff12538df762f4b2 100644
 | 
| --- a/Source/core/svg/graphics/SVGImageForContainer.h
 | 
| +++ b/Source/core/svg/graphics/SVGImageForContainer.h
 | 
| @@ -30,6 +30,7 @@
 | 
|  #include "platform/geometry/FloatRect.h"
 | 
|  #include "platform/geometry/FloatSize.h"
 | 
|  #include "platform/graphics/Image.h"
 | 
| +#include "platform/weborigin/KURL.h"
 | 
|  
 | 
|  namespace WebCore {
 | 
|  
 | 
| @@ -43,6 +44,7 @@ public:
 | 
|      virtual bool isSVGImage() const OVERRIDE { return true; }
 | 
|  
 | 
|      virtual IntSize size() const OVERRIDE;
 | 
| +    void setURL(const KURL& url) { m_image->setURL(url); }
 | 
|  
 | 
|      virtual bool usesContainerSize() const OVERRIDE { return m_image->usesContainerSize(); }
 | 
|      virtual bool hasRelativeWidth() const OVERRIDE { return m_image->hasRelativeWidth(); }
 | 
| 
 |