Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: Source/core/rendering/RenderText.h

Issue 241713002: Remove some dead code from rendering/ folder (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderRubyBase.cpp ('k') | Source/core/rendering/RenderText.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * (C) 1999 Lars Knoll (knoll@kde.org) 2 * (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Dirk Mueller (mueller@kde.org) 3 * (C) 2000 Dirk Mueller (mueller@kde.org)
4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 129
130 virtual int previousOffset(int current) const OVERRIDE FINAL; 130 virtual int previousOffset(int current) const OVERRIDE FINAL;
131 virtual int previousOffsetForBackwardDeletion(int current) const OVERRIDE FI NAL; 131 virtual int previousOffsetForBackwardDeletion(int current) const OVERRIDE FI NAL;
132 virtual int nextOffset(int current) const OVERRIDE FINAL; 132 virtual int nextOffset(int current) const OVERRIDE FINAL;
133 133
134 bool containsReversedText() const { return m_containsReversedText; } 134 bool containsReversedText() const { return m_containsReversedText; }
135 135
136 bool isSecure() const { return style()->textSecurity() != TSNONE; } 136 bool isSecure() const { return style()->textSecurity() != TSNONE; }
137 void momentarilyRevealLastTypedCharacter(unsigned lastTypedCharacterOffset); 137 void momentarilyRevealLastTypedCharacter(unsigned lastTypedCharacterOffset);
138 138
139 InlineTextBox* findNextInlineTextBox(int offset, int& pos) const;
140
141 void checkConsistency() const; 139 void checkConsistency() const;
142 140
143 bool isAllCollapsibleWhitespace() const; 141 bool isAllCollapsibleWhitespace() const;
144 142
145 bool canUseSimpleFontCodePath() const { return m_canUseSimpleFontCodePath; } 143 bool canUseSimpleFontCodePath() const { return m_canUseSimpleFontCodePath; }
146 bool knownToHaveNoOverflowAndNoFallbackFonts() const { return m_knownToHaveN oOverflowAndNoFallbackFonts; } 144 bool knownToHaveNoOverflowAndNoFallbackFonts() const { return m_knownToHaveN oOverflowAndNoFallbackFonts; }
147 145
148 void removeAndDestroyTextBoxes(); 146 void removeAndDestroyTextBoxes();
149 147
150 PassRefPtr<AbstractInlineTextBox> firstAbstractInlineTextBox(); 148 PassRefPtr<AbstractInlineTextBox> firstAbstractInlineTextBox();
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 inline void RenderText::checkConsistency() const 229 inline void RenderText::checkConsistency() const
232 { 230 {
233 } 231 }
234 #endif 232 #endif
235 233
236 void applyTextTransform(const RenderStyle*, String&, UChar); 234 void applyTextTransform(const RenderStyle*, String&, UChar);
237 235
238 } // namespace WebCore 236 } // namespace WebCore
239 237
240 #endif // RenderText_h 238 #endif // RenderText_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderRubyBase.cpp ('k') | Source/core/rendering/RenderText.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698