| Index: sky/engine/core/html/HTMLImageElement.h
|
| diff --git a/sky/engine/core/html/HTMLImageElement.h b/sky/engine/core/html/HTMLImageElement.h
|
| index d7d62ef9e24ff28877e157dc58dc2374e85f16da..6167d04006c304430a23ef68d4d752e6a671d820 100644
|
| --- a/sky/engine/core/html/HTMLImageElement.h
|
| +++ b/sky/engine/core/html/HTMLImageElement.h
|
| @@ -45,9 +45,6 @@ public:
|
|
|
| virtual ~HTMLImageElement();
|
|
|
| - int width();
|
| - int height();
|
| -
|
| int naturalWidth() const;
|
| int naturalHeight() const;
|
| const String& currentSrc() const;
|
| @@ -55,16 +52,9 @@ public:
|
| ImageResource* cachedImage() const { return imageLoader().image(); }
|
| void setImageResource(ImageResource* i) { imageLoader().setImage(i); };
|
|
|
| - void setHeight(int);
|
| -
|
| KURL src() const;
|
| void setSrc(const String&);
|
|
|
| - void setWidth(int);
|
| -
|
| - int x() const;
|
| - int y() const;
|
| -
|
| bool complete() const;
|
|
|
| bool hasPendingActivity() const { return imageLoader().hasPendingActivity(); }
|
|
|