Index: Source/core/html/HTMLImageElement.h |
diff --git a/Source/core/html/HTMLImageElement.h b/Source/core/html/HTMLImageElement.h |
index f8acd66d8f4546ca6bfc1c1b838ab5f06a3e7085..0f9bc676d3005cf1851aa439dc102bfa7cda472d 100644 |
--- a/Source/core/html/HTMLImageElement.h |
+++ b/Source/core/html/HTMLImageElement.h |
@@ -79,6 +79,8 @@ public: |
void addClient(ImageLoaderClient* client) { m_imageLoader.addClient(client); } |
void removeClient(ImageLoaderClient* client) { m_imageLoader.removeClient(client); } |
+ virtual const AtomicString imageSourceURL() const OVERRIDE; |
+ |
protected: |
HTMLImageElement(const QualifiedName&, Document&, HTMLFormElement* = 0); |
@@ -112,6 +114,7 @@ private: |
HTMLImageLoader m_imageLoader; |
HTMLFormElement* m_form; |
CompositeOperator m_compositeOperator; |
+ AtomicString m_bestFitImageURL; |
}; |
inline HTMLImageElement* toHTMLImageElement(Node* node) |