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

Unified Diff: third_party/WebKit/Source/platform/fonts/mac/FontCacheMac.mm

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/fonts/mac/FontCacheMac.mm
diff --git a/third_party/WebKit/Source/platform/fonts/mac/FontCacheMac.mm b/third_party/WebKit/Source/platform/fonts/mac/FontCacheMac.mm
index 995c95b416f9265e0bc9a1a83c33774495b7de55..51655f7b1789540f71a68131b0a3ea301f1007c4 100644
--- a/third_party/WebKit/Source/platform/fonts/mac/FontCacheMac.mm
+++ b/third_party/WebKit/Source/platform/fonts/mac/FontCacheMac.mm
@@ -281,7 +281,7 @@ std::unique_ptr<FontPlatformData> FontCache::createFontPlatformData(
// font loading failing. Out-of-process loading occurs for registered fonts
// stored in non-system locations. When loading fails, we do not want to use
// the returned FontPlatformData since it will not have a valid SkTypeface.
- std::unique_ptr<FontPlatformData> platformData = wrapUnique(
+ std::unique_ptr<FontPlatformData> platformData = WTF::wrapUnique(
new FontPlatformData(platformFont, size, syntheticBold, syntheticItalic,
fontDescription.orientation()));
if (!platformData->typeface()) {

Powered by Google App Engine
This is Rietveld 408576698