| Index: Source/WebCore/rendering/RenderTextFragment.h
|
| ===================================================================
|
| --- Source/WebCore/rendering/RenderTextFragment.h (revision 112901)
|
| +++ Source/WebCore/rendering/RenderTextFragment.h (working copy)
|
| @@ -48,13 +48,16 @@
|
| StringImpl* contentString() const { return m_contentString.get(); }
|
| virtual PassRefPtr<StringImpl> originalText() const;
|
|
|
| + virtual void setText(PassRefPtr<StringImpl>, bool force = false) OVERRIDE;
|
| +
|
| + virtual void transformText() OVERRIDE;
|
| +
|
| protected:
|
| virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle);
|
|
|
| private:
|
| virtual void willBeDestroyed();
|
|
|
| - virtual void setTextInternal(PassRefPtr<StringImpl>);
|
| virtual UChar previousCharacter() const;
|
| RenderBlock* blockForAccompanyingFirstLetter() const;
|
|
|
| @@ -62,7 +65,6 @@
|
| unsigned m_end;
|
| RefPtr<StringImpl> m_contentString;
|
| RenderObject* m_firstLetter;
|
| - bool m_allowFragmentReset;
|
| };
|
|
|
| inline RenderTextFragment* toRenderTextFragment(RenderObject* object)
|
|
|