Changeset 95736 in webkit


Ignore:
Timestamp:
Sep 22, 2011 10:51:19 AM (13 years ago)
Author:
andersca@apple.com
Message:

Widget::frameRect shouldn't be virtual
https://bugs.webkit.org/show_bug.cgi?id=68637

Reviewed by Sam Weinig.

Nobody overrides Widget::frameRect and nobody should.

  • platform/Widget.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r95728 r95736  
     12011-09-22  Anders Carlsson  <andersca@apple.com>
     2
     3        Widget::frameRect shouldn't be virtual
     4        https://bugs.webkit.org/show_bug.cgi?id=68637
     5
     6        Reviewed by Sam Weinig.
     7
     8        Nobody overrides Widget::frameRect and nobody should.
     9
     10        * platform/Widget.h:
     11
    1122011-09-22  Sergey Glazunov  <serg.glazunov@gmail.com>
    213
  • trunk/Source/WebCore/platform/Widget.h

    r95725 r95736  
    150150
    151151    virtual void setFrameRect(const IntRect&);
    152     virtual IntRect frameRect() const;
     152    IntRect frameRect() const;
    153153    IntRect boundsRect() const { return IntRect(0, 0, width(),  height()); }
    154154
Note: See TracChangeset for help on using the changeset viewer.