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

Unified Diff: Source/core/rendering/RenderText.h

Issue 69823002: Move ownership of the TextResourceDecoder to DecodedDataDocumentParser (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Moved DocumentEncodingData to its own header Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/RenderText.h
diff --git a/Source/core/rendering/RenderText.h b/Source/core/rendering/RenderText.h
index 089e06f3952d3c2a52e1ade24defbfa9b3c99b05..13af4be1c6bdb366d0380d260046d4b86b862c06 100644
--- a/Source/core/rendering/RenderText.h
+++ b/Source/core/rendering/RenderText.h
@@ -178,7 +178,6 @@ private:
bool containsOnlyWhitespace(unsigned from, unsigned len) const;
float widthFromCache(const Font&, int start, int len, float xPos, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow*) const;
bool isAllASCII() const { return m_isAllASCII; }
- void updateNeedsTranscoding();
void secureText(UChar mask);
@@ -197,7 +196,6 @@ private:
bool m_isAllASCII : 1;
bool m_canUseSimpleFontCodePath : 1;
mutable bool m_knownToHaveNoOverflowAndNoFallbackFonts : 1;
- bool m_needsTranscoding : 1;
abarth-chromium 2013/11/14 07:04:33 Is this change related to this CL? /me is confuse
oystein (OOO til 10th of July) 2013/11/14 19:02:29 Not directly I suppose; this was touched in an ear
float m_minWidth;
float m_maxWidth;

Powered by Google App Engine
This is Rietveld 408576698