Changeset 121884 in webkit


Ignore:
Timestamp:
Jul 4, 2012 11:53:59 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Add virtual keyword to ~BitmapImage and ~StillImage because ~Image is virtual.
https://bugs.webkit.org/show_bug.cgi?id=90447

Patch by Huang Dongsung <luxtella@company100.net> on 2012-07-04
Reviewed by Alexey Proskuryakov.

No new tests. This patch doesn't change behavior.

  • platform/graphics/BitmapImage.h:

(BitmapImage):

  • platform/graphics/qt/StillImageQt.h:

(StillImage):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r121883 r121884  
     12012-07-04  Huang Dongsung  <luxtella@company100.net>
     2
     3        Add virtual keyword to ~BitmapImage and ~StillImage because ~Image is virtual.
     4        https://bugs.webkit.org/show_bug.cgi?id=90447
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        No new tests. This patch doesn't change behavior.
     9
     10        * platform/graphics/BitmapImage.h:
     11        (BitmapImage):
     12        * platform/graphics/qt/StillImageQt.h:
     13        (StillImage):
     14
    1152012-07-04  Mike West  <mkwst@chromium.org>
    216
  • trunk/Source/WebCore/platform/graphics/BitmapImage.h

    r121208 r121884  
    113113        return adoptRef(new BitmapImage(observer));
    114114    }
    115     ~BitmapImage();
     115    virtual ~BitmapImage();
    116116   
    117117    virtual bool isBitmapImage() const;
  • trunk/Source/WebCore/platform/graphics/qt/StillImageQt.h

    r119908 r121884  
    5959        StillImage(const QPixmap& pixmap);
    6060        StillImage(const QPixmap* pixmap);
    61         ~StillImage();
     61        virtual ~StillImage();
    6262       
    6363        const QPixmap* m_pixmap;
Note: See TracChangeset for help on using the changeset viewer.