| Index: Source/core/html/HTMLImageElement.h
|
| diff --git a/Source/core/html/HTMLImageElement.h b/Source/core/html/HTMLImageElement.h
|
| index c4f9e31deeecd2a805121989e5a4ea061a50fbfd..45036310da38c0ebc2b74c6f8e7a5ad8a868cabf 100644
|
| --- a/Source/core/html/HTMLImageElement.h
|
| +++ b/Source/core/html/HTMLImageElement.h
|
| @@ -76,6 +76,9 @@ public:
|
|
|
| virtual bool canContainRangeEndPoint() const { return false; }
|
|
|
| + void addClient(ImageLoaderClient* client) { m_imageLoader.addClient(client); }
|
| + void removeClient(ImageLoaderClient* client) { m_imageLoader.removeClient(client); }
|
| +
|
| protected:
|
| HTMLImageElement(const QualifiedName&, Document*, HTMLFormElement* = 0);
|
|
|
|
|