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

Side by Side Diff: third_party/WebKit/Source/web/linux/WebFontRendering.cpp

Issue 1944993003: Move most of FontRenderStyle manipulation code into its own file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more typo fix Created 4 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/platform/fonts/linux/FontRenderStyle.cpp ('k') | no next file » | 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 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "public/web/linux/WebFontRendering.h" 31 #include "public/web/linux/WebFontRendering.h"
32 32
33 #include "core/layout/LayoutThemeFontProvider.h" 33 #include "core/layout/LayoutThemeFontProvider.h"
34 #include "platform/fonts/FontCache.h" 34 #include "platform/fonts/FontCache.h"
35 #include "platform/fonts/FontDescription.h" 35 #include "platform/fonts/FontDescription.h"
36 #include "platform/fonts/FontPlatformData.h" 36 #include "platform/fonts/linux/FontRenderStyle.h"
37 37
38 using blink::FontDescription; 38 using blink::FontDescription;
39 using blink::FontPlatformData; 39 using blink::FontPlatformData;
40 40
41 namespace blink { 41 namespace blink {
42 42
43 // static 43 // static
44 void WebFontRendering::setSkiaFontManager(SkFontMgr* fontMgr) 44 void WebFontRendering::setSkiaFontManager(SkFontMgr* fontMgr)
45 { 45 {
46 WTF::adopted(fontMgr); 46 WTF::adopted(fontMgr);
47 FontCache::setFontManager(RefPtr<SkFontMgr>(fontMgr)); 47 FontCache::setFontManager(RefPtr<SkFontMgr>(fontMgr));
48 } 48 }
49 49
50 // static 50 // static
51 void WebFontRendering::setHinting(SkPaint::Hinting hinting) 51 void WebFontRendering::setHinting(SkPaint::Hinting hinting)
52 { 52 {
53 FontPlatformData::setHinting(hinting); 53 FontRenderStyle::setHinting(hinting);
54 } 54 }
55 55
56 // static 56 // static
57 void WebFontRendering::setAutoHint(bool useAutoHint) 57 void WebFontRendering::setAutoHint(bool useAutoHint)
58 { 58 {
59 FontPlatformData::setAutoHint(useAutoHint); 59 FontRenderStyle::setAutoHint(useAutoHint);
60 } 60 }
61 61
62 // static 62 // static
63 void WebFontRendering::setUseBitmaps(bool useBitmaps) 63 void WebFontRendering::setUseBitmaps(bool useBitmaps)
64 { 64 {
65 FontPlatformData::setUseBitmaps(useBitmaps); 65 FontRenderStyle::setUseBitmaps(useBitmaps);
66 } 66 }
67 67
68 // static 68 // static
69 void WebFontRendering::setAntiAlias(bool useAntiAlias) 69 void WebFontRendering::setAntiAlias(bool useAntiAlias)
70 { 70 {
71 FontPlatformData::setAntiAlias(useAntiAlias); 71 FontRenderStyle::setAntiAlias(useAntiAlias);
72 } 72 }
73 73
74 // static 74 // static
75 void WebFontRendering::setSubpixelRendering(bool useSubpixelRendering) 75 void WebFontRendering::setSubpixelRendering(bool useSubpixelRendering)
76 { 76 {
77 FontPlatformData::setSubpixelRendering(useSubpixelRendering); 77 FontRenderStyle::setSubpixelRendering(useSubpixelRendering);
78 } 78 }
79 79
80 // static 80 // static
81 void WebFontRendering::setSubpixelPositioning(bool useSubpixelPositioning) 81 void WebFontRendering::setSubpixelPositioning(bool useSubpixelPositioning)
82 { 82 {
83 FontDescription::setSubpixelPositioning(useSubpixelPositioning); 83 FontDescription::setSubpixelPositioning(useSubpixelPositioning);
84 } 84 }
85 85
86 // static 86 // static
87 void WebFontRendering::setLCDOrder(SkFontHost::LCDOrder order) 87 void WebFontRendering::setLCDOrder(SkFontHost::LCDOrder order)
88 { 88 {
89 SkFontHost::SetSubpixelOrder(order); 89 SkFontHost::SetSubpixelOrder(order);
90 } 90 }
91 91
92 // static 92 // static
93 void WebFontRendering::setLCDOrientation(SkFontHost::LCDOrientation orientation) 93 void WebFontRendering::setLCDOrientation(SkFontHost::LCDOrientation orientation)
94 { 94 {
95 SkFontHost::SetSubpixelOrientation(orientation); 95 SkFontHost::SetSubpixelOrientation(orientation);
96 } 96 }
97 97
98 // static 98 // static
99 void WebFontRendering::setDefaultFontSize(int size) 99 void WebFontRendering::setDefaultFontSize(int size)
100 { 100 {
101 LayoutThemeFontProvider::setDefaultFontSize(size); 101 LayoutThemeFontProvider::setDefaultFontSize(size);
102 } 102 }
103 103
104 } // namespace blink 104 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/fonts/linux/FontRenderStyle.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698