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

Unified Diff: content/common/font_config_ipc_linux.cc

Issue 10836242: Made result_filefaceid output optional in FontConfigIPC::Match. There are cases when we are only in… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « no previous file | skia/ext/SkFontHost_fontconfig_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/font_config_ipc_linux.cc
===================================================================
--- content/common/font_config_ipc_linux.cc (revision 151488)
+++ content/common/font_config_ipc_linux.cc (working copy)
@@ -70,7 +70,8 @@
return false;
}
- *result_filefaceid = reply_filefaceid;
+ if (result_filefaceid)
+ *result_filefaceid = reply_filefaceid;
if (result_family)
*result_family = reply_family;
« no previous file with comments | « no previous file | skia/ext/SkFontHost_fontconfig_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698