Changeset 83503 in webkit


Ignore:
Timestamp:
Apr 11, 2011 2:44:30 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-11 Varun Jain <varunjain@chromium.org>

Reviewed by Darin Fisher.

Resolving FIXME to make new WebWidget method pure virtual since all downstream classes have implemented the method.
https://bugs.webkit.org/show_bug.cgi?id=58245

  • Source/WebKit/chromium/public/WebWidget.h:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r83495 r83503  
     12011-04-11  Varun Jain  <varunjain@chromium.org>
     2
     3        Reviewed by Darin Fisher.
     4
     5        Resolving FIXME to make new WebWidget method pure virtual since all downstream classes have implemented the method.
     6        https://bugs.webkit.org/show_bug.cgi?id=58245
     7
     8        *  Source/WebKit/chromium/public/WebWidget.h:
     9
    1102011-04-11  Thouraya ANDOLSI  <thouraya.andolsi@st.com>
    211
  • trunk/Source/WebKit/chromium/public/WebWidget.h

    r83320 r83503  
    130130    // Returns the start and end point for the current selection, aligned to the
    131131    // bottom of the selected line.
    132     // FIXME: make this pure virtual after all downstream classes have
    133     // implemented it.
    134     virtual bool selectionRange(WebPoint& start, WebPoint& end) const
    135     {
    136         return false;
    137     }
     132    virtual bool selectionRange(WebPoint& start, WebPoint& end) const = 0;
    138133
    139134    // Changes the text direction of the selected input node.
Note: See TracChangeset for help on using the changeset viewer.