| Index: third_party/WebKit/Source/core/style/StyleImage.h
|
| diff --git a/third_party/WebKit/Source/core/style/StyleImage.h b/third_party/WebKit/Source/core/style/StyleImage.h
|
| index 7f68d38379350f28b27e7d18d8ddf92bbc1dab88..cd73ca0a14f3333b54c205c4d092667f7a8ac416 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleImage.h
|
| +++ b/third_party/WebKit/Source/core/style/StyleImage.h
|
| @@ -61,14 +61,14 @@ public:
|
| virtual bool imageHasRelativeWidth() const = 0;
|
| virtual bool imageHasRelativeHeight() const = 0;
|
| virtual bool usesImageContainerSize() const = 0;
|
| - virtual void setContainerSizeForLayoutObject(const LayoutObject*, const IntSize&, float) = 0;
|
| virtual void addClient(LayoutObject*) = 0;
|
| virtual void removeClient(LayoutObject*) = 0;
|
| - virtual PassRefPtr<Image> image(const LayoutObject*, const IntSize&) const = 0;
|
| + virtual PassRefPtr<Image> image(const LayoutObject*, const IntSize&, float, const KURL&) const = 0;
|
| virtual WrappedImagePtr data() const = 0;
|
| virtual float imageScaleFactor() const { return 1; }
|
| virtual bool knownToBeOpaque(const LayoutObject*) const = 0;
|
| virtual ImageResource* cachedImage() const { return 0; }
|
| + virtual KURL url() const = 0;
|
|
|
| ALWAYS_INLINE bool isImageResource() const { return m_isImageResource; }
|
| ALWAYS_INLINE bool isPendingImage() const { return m_isPendingImage; }
|
|
|