Index: content/common/font_list_gtk.cc |
diff --git a/content/common/font_list_gtk.cc b/content/common/font_list_gtk.cc |
index 0742bb32b0a3e8105ea7f04ce17aa464a37ebfab..136f998430444e2e0a2949b7f787646a7bf5cfd7 100644 |
--- a/content/common/font_list_gtk.cc |
+++ b/content/common/font_list_gtk.cc |
@@ -31,8 +31,8 @@ ListValue* GetFontList_SlowBlocking() { |
for (std::set<std::string>::const_iterator iter = sorted_families.begin(); |
iter != sorted_families.end(); ++iter) { |
ListValue* font_item = new ListValue(); |
- font_item->Append(Value::CreateStringValue(*iter)); |
- font_item->Append(Value::CreateStringValue(*iter)); // localized name. |
+ font_item->Append(base::StringValue::New(*iter)); |
+ font_item->Append(base::StringValue::New(*iter)); // localized name. |
// TODO(yusukes): Support localized family names. |
font_list->Append(font_item); |
} |