| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |