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

Side by Side Diff: ui/gfx/platform_font_ios.mm

Issue 789583002: Updates subpixel positioning and hinting when DSF is changed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: linux fix Created 6 years 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 | « ui/gfx/platform_font_ios.h ('k') | ui/gfx/platform_font_mac.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/gfx/platform_font_ios.h" 5 #include "ui/gfx/platform_font_ios.h"
6 6
7 #import <UIKit/UIKit.h> 7 #import <UIKit/UIKit.h>
8 8
9 #include <cmath> 9 #include <cmath>
10 10
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 } 72 }
73 73
74 std::string PlatformFontIOS::GetActualFontNameForTesting() const { 74 std::string PlatformFontIOS::GetActualFontNameForTesting() const {
75 return base::SysNSStringToUTF8([GetNativeFont() familyName]); 75 return base::SysNSStringToUTF8([GetNativeFont() familyName]);
76 } 76 }
77 77
78 int PlatformFontIOS::GetFontSize() const { 78 int PlatformFontIOS::GetFontSize() const {
79 return font_size_; 79 return font_size_;
80 } 80 }
81 81
82 const FontRenderParams& PlatformFontIOS::GetFontRenderParams() const { 82 const FontRenderParams& PlatformFontIOS::GetFontRenderParams() {
83 NOTIMPLEMENTED(); 83 NOTIMPLEMENTED();
84 static FontRenderParams params; 84 static FontRenderParams params;
85 return params; 85 return params;
86 } 86 }
87 87
88 NativeFont PlatformFontIOS::GetNativeFont() const { 88 NativeFont PlatformFontIOS::GetNativeFont() const {
89 return [UIFont fontWithName:base::SysUTF8ToNSString(font_name_) 89 return [UIFont fontWithName:base::SysUTF8ToNSString(font_name_)
90 size:font_size_]; 90 size:font_size_];
91 } 91 }
92 92
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 return new PlatformFontIOS(native_font); 129 return new PlatformFontIOS(native_font);
130 } 130 }
131 131
132 // static 132 // static
133 PlatformFont* PlatformFont::CreateFromNameAndSize(const std::string& font_name, 133 PlatformFont* PlatformFont::CreateFromNameAndSize(const std::string& font_name,
134 int font_size) { 134 int font_size) {
135 return new PlatformFontIOS(font_name, font_size); 135 return new PlatformFontIOS(font_name, font_size);
136 } 136 }
137 137
138 } // namespace gfx 138 } // namespace gfx
OLDNEW
« no previous file with comments | « ui/gfx/platform_font_ios.h ('k') | ui/gfx/platform_font_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698