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

Unified Diff: content/common/font_list_win.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/common/font_list_mac.mm ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/font_list_win.cc
diff --git a/content/common/font_list_win.cc b/content/common/font_list_win.cc
index 92428eba5faa1ce3607a7bec480297fea49f7b81..282a09a256d98c986f6cec692a4aa243e0938cc6 100644
--- a/content/common/font_list_win.cc
+++ b/content/common/font_list_win.cc
@@ -45,8 +45,8 @@ ListValue* GetFontList_SlowBlocking() {
std::set<string16>::iterator iter;
for (iter = font_names.begin(); iter != font_names.end(); iter++) {
ListValue* font_item = new ListValue();
- font_item->Append(Value::CreateStringValue(*iter));
- font_item->Append(Value::CreateStringValue(*iter));
+ font_item->Append(base::StringValue::New(*iter));
+ font_item->Append(base::StringValue::New(*iter));
font_list->Append(font_item);
}
return font_list;
« no previous file with comments | « content/common/font_list_mac.mm ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698