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

Unified Diff: content/common/font_list_gtk.cc

Issue 7649006: more changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another typo Created 9 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 | « content/browser/gpu/gpu_data_manager.cc ('k') | content/common/font_list_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « content/browser/gpu/gpu_data_manager.cc ('k') | content/common/font_list_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698