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

Unified Diff: webkit/glue/plugins/pepper_font.cc

Issue 3029055: Pull PPAPI and get support for average char width. Hook it up to "0" for now... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 | « DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_font.cc
===================================================================
--- webkit/glue/plugins/pepper_font.cc (revision 54766)
+++ webkit/glue/plugins/pepper_font.cc (working copy)
@@ -36,6 +36,7 @@
if (desc.face.type != PP_VARTYPE_STRING && desc.face.type != PP_VARTYPE_VOID)
return false;
+ // Check enum ranges.
if (static_cast<int>(desc.family) < PP_FONTFAMILY_DEFAULT ||
static_cast<int>(desc.family) > PP_FONTFAMILY_MONOSPACE)
return false;
@@ -43,6 +44,10 @@
static_cast<int>(desc.weight) > PP_FONTWEIGHT_900)
return false;
+ // Check for excessive sizes which may cause layout to get confused.
+ if (desc.size() > 200)
+ return false;
+
return true;
}
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698