Changeset 117991 in webkit


Ignore:
Timestamp:
May 22, 2012 10:04:23 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

add OVERRIDE annotations to classes derived from CCAnimationCurve
https://bugs.webkit.org/show_bug.cgi?id=87073

Patch by Lu Guanqun <guanqun.lu@intel.com> on 2012-05-22
Reviewed by James Robinson.

No new tests required.

  • platform/graphics/chromium/cc/CCAnimationCurve.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r117990 r117991  
     12012-05-22  Lu Guanqun  <guanqun.lu@intel.com>
     2
     3        add OVERRIDE annotations to classes derived from CCAnimationCurve
     4        https://bugs.webkit.org/show_bug.cgi?id=87073
     5
     6        Reviewed by James Robinson.
     7
     8        No new tests required.
     9
     10        * platform/graphics/chromium/cc/CCAnimationCurve.h:
     11
    1122012-05-22  Lu Guanqun  <guanqun.lu@intel.com>
    213
  • trunk/Source/WebCore/platform/graphics/chromium/cc/CCAnimationCurve.h

    r108581 r117991  
    5959
    6060    // Partial CCAnimation implementation.
    61     virtual Type type() const { return Float; }
     61    virtual Type type() const OVERRIDE { return Float; }
    6262};
    6363
     
    6969
    7070    // Partial CCAnimation implementation.
    71     virtual Type type() const { return Transform; }
     71    virtual Type type() const OVERRIDE { return Transform; }
    7272};
    7373
Note: See TracChangeset for help on using the changeset viewer.