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

Unified Diff: Source/platform/fonts/FontDescription.cpp

Issue 276573010: Adding Locale (language attribute) information to font and using the (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Comment fix Created 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/platform/fonts/FontDescription.cpp
diff --git a/Source/platform/fonts/FontDescription.cpp b/Source/platform/fonts/FontDescription.cpp
index a55b93cc5366a24b99aa0caabafead3f87463022..4a545e13d7d63caea6f4fb44b66d833a4352363a 100644
--- a/Source/platform/fonts/FontDescription.cpp
+++ b/Source/platform/fonts/FontDescription.cpp
@@ -43,6 +43,7 @@ struct SameSizeAsFontDescription {
// FXIME: Make them fit into one word.
uint32_t bitfields;
uint32_t bitfields2 : 7;
+ hb_language_t locale;
Inactive 2014/05/22 13:52:02 Ditto, please move this up after the RefPtr.
};
COMPILE_ASSERT(sizeof(FontDescription) == sizeof(SameSizeAsFontDescription), FontDescription_should_stay_small);

Powered by Google App Engine
This is Rietveld 408576698