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

Unified Diff: Source/platform/graphics/GraphicsContextState.h

Issue 494773003: Move shouldSmoothFonts out of GraphicsContextState. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/graphics/GraphicsContext.cpp ('k') | Source/platform/graphics/GraphicsContextState.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/GraphicsContextState.h
diff --git a/Source/platform/graphics/GraphicsContextState.h b/Source/platform/graphics/GraphicsContextState.h
index f0095563b1a0b5fb3f3b709ad80d7d94fe77472b..ae34bb4fd7a05728c4e344ad055fa320d0f69cf6 100644
--- a/Source/platform/graphics/GraphicsContextState.h
+++ b/Source/platform/graphics/GraphicsContextState.h
@@ -138,9 +138,6 @@ public:
bool shouldAntialias() const { return m_shouldAntialias; }
void setShouldAntialias(bool);
- bool shouldSmoothFonts() const { return m_shouldSmoothFonts; }
- void setShouldSmoothFonts(bool shouldSmoothFonts) { m_shouldSmoothFonts = shouldSmoothFonts; }
-
bool shouldClampToSourceRect() const { return m_shouldClampToSourceRect; }
void setShouldClampToSourceRect(bool shouldClampToSourceRect) { m_shouldClampToSourceRect = shouldClampToSourceRect; }
@@ -184,7 +181,6 @@ private:
uint16_t m_saveCount;
bool m_shouldAntialias : 1;
- bool m_shouldSmoothFonts : 1;
bool m_shouldClampToSourceRect : 1;
};
« no previous file with comments | « Source/platform/graphics/GraphicsContext.cpp ('k') | Source/platform/graphics/GraphicsContextState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698