Changeset 133276 in webkit


Ignore:
Timestamp:
Nov 2, 2012 2:16:12 AM (11 years ago)
Author:
Csaba Osztrogonác
Message:

[Qt][Mac][Win] Unreviewed build fix after r133182
https://bugs.webkit.org/show_bug.cgi?id=100995

Remove two methods' OVERRIDE and virtual modifiers, because they cannot be found in any base class.
Also relocate their prototypes, because they mix with the overridden ones.

Patch by Nandor Huszka <hnandor@inf.u-szeged.hu> on 2012-11-02

  • WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.h:

(CoordinatedGraphicsLayer):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r133274 r133276  
     12012-11-02  Nandor Huszka  <hnandor@inf.u-szeged.hu>
     2
     3        [Qt][Mac][Win] Unreviewed build fix after r133182
     4        https://bugs.webkit.org/show_bug.cgi?id=100995
     5
     6        Remove two methods' OVERRIDE and virtual modifiers, because they cannot be found in any base class.
     7        Also relocate their prototypes, because they mix with the overridden ones.
     8
     9        * WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.h:
     10        (CoordinatedGraphicsLayer):
     11
    1122012-11-02  Jihye Kang  <jye.kang@samsung.com>
    213
  • trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.h

    r133270 r133276  
    114114    virtual void setNeedsDisplayInRect(const FloatRect&) OVERRIDE;
    115115    virtual void setContentsNeedsDisplay() OVERRIDE;
    116     virtual void setContentsScale(float) OVERRIDE;
    117     virtual void setVisibleContentRectTrajectoryVector(const FloatPoint&) OVERRIDE;
    118116    virtual void flushCompositingState(const FloatRect&) OVERRIDE;
    119117    virtual void flushCompositingStateForThisLayerOnly() OVERRIDE;
     
    124122    virtual void pauseAnimation(const String&, double) OVERRIDE;
    125123    virtual void removeAnimation(const String&) OVERRIDE;
     124   
     125    virtual void setContentsScale(float);
     126    virtual void setVisibleContentRectTrajectoryVector(const FloatPoint&);
    126127
    127128    void setRootLayer(bool);
Note: See TracChangeset for help on using the changeset viewer.