| Index: content/browser/renderer_host/render_sandbox_host_linux.cc
|
| diff --git a/content/browser/renderer_host/render_sandbox_host_linux.cc b/content/browser/renderer_host/render_sandbox_host_linux.cc
|
| index d84a121b941e98668ea2ae43fa5d57cdfc98813e..4499d77ce4d7e247cc95be5a5fd4dfe049cdcaa3 100644
|
| --- a/content/browser/renderer_host/render_sandbox_host_linux.cc
|
| +++ b/content/browser/renderer_host/render_sandbox_host_linux.cc
|
| @@ -260,9 +260,9 @@ class SandboxIPCProcess {
|
| if (!pickle.ReadString(&iter, &preferred_locale))
|
| return;
|
|
|
| - // TODO(kochi): Pass preferred_locale.c_str() as the third parameter
|
| - // once https://bugs.webkit.org/show_bug.cgi?id=55453 is landed.
|
| - WebCString family = WebFontInfo::familyForChars(chars.get(), num_chars);
|
| + WebCString family = WebFontInfo::familyForChars(chars.get(),
|
| + num_chars,
|
| + preferred_locale.c_str());
|
|
|
| Pickle reply;
|
| if (family.data()) {
|
|
|