Changeset 79845 in webkit


Ignore:
Timestamp:
Feb 28, 2011 12:45:22 AM (13 years ago)
Author:
rolandsteiner@chromium.org
Message:

2011-02-28 Roland Steiner <rolandsteiner@chromium.org>

Reviewed by Kent Tamura.

Bug 55355 - TextIterator should not be a friend of RenderTextControl
https://bugs.webkit.org/show_bug.cgi?id=55355

Remove need for 'friend' clause by making innerTextElement() public.

No new tests. (simple refactoring)

  • rendering/RenderTextControl.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r79842 r79845  
     12011-02-28  Roland Steiner  <rolandsteiner@chromium.org>
     2
     3        Reviewed by Kent Tamura.
     4
     5        Bug 55355 - TextIterator should not be a friend of RenderTextControl
     6        https://bugs.webkit.org/show_bug.cgi?id=55355
     7
     8        Remove need for 'friend' clause by making innerTextElement() public.
     9
     10        No new tests. (simple refactoring)
     11
     12        * rendering/RenderTextControl.h:
     13
    1142011-02-27  Patrick Gansterer  <paroga@webkit.org>
    215
  • trunk/Source/WebCore/rendering/RenderTextControl.h

    r73572 r79845  
    3434public:
    3535    virtual ~RenderTextControl();
     36
     37    HTMLElement* innerTextElement() const;
    3638
    3739    bool wasChangedSinceLastChangeEvent() const { return m_wasChangedSinceLastChangeEvent; }
     
    8385    virtual void updateFromElement();
    8486    virtual void computeLogicalHeight();
    85 
    86     friend class TextIterator;
    87     HTMLElement* innerTextElement() const;
    8887
    8988    bool m_placeholderVisible;
Note: See TracChangeset for help on using the changeset viewer.