| Index: content/child/browser_font_resource_trusted.cc
|
| diff --git a/content/child/browser_font_resource_trusted.cc b/content/child/browser_font_resource_trusted.cc
|
| index 39746a82fc5af620df2465a76a5833427817415e..7412c9c49c027572c6cbed0780a4ea6fdd6ec547 100644
|
| --- a/content/child/browser_font_resource_trusted.cc
|
| +++ b/content/child/browser_font_resource_trusted.cc
|
| @@ -43,11 +43,9 @@ namespace {
|
| // undefined reference linker error.
|
| const char kCommonScript[] = "Zyyy";
|
|
|
| -base::string16 GetFontFromMap(
|
| - const webkit_glue::ScriptFontFamilyMap& map,
|
| - const std::string& script) {
|
| - webkit_glue::ScriptFontFamilyMap::const_iterator it =
|
| - map.find(script);
|
| +base::string16 GetFontFromMap(const ScriptFontFamilyMap& map,
|
| + const std::string& script) {
|
| + ScriptFontFamilyMap::const_iterator it = map.find(script);
|
| if (it != map.end())
|
| return it->second;
|
| return base::string16();
|
|
|