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

Unified Diff: webkit/common/webpreferences.cc

Issue 102993018: Remove UTF string conversion functions from the global namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: aaaaaaaaaa Created 7 years 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 | « webkit/common/database/database_connections_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/webpreferences.cc
diff --git a/webkit/common/webpreferences.cc b/webkit/common/webpreferences.cc
index 59f2c615b3d250a1a8989de87faf5d92bc9a20b7..98629eff6e80f28cd9c59f5977823259c13fb94c 100644
--- a/webkit/common/webpreferences.cc
+++ b/webkit/common/webpreferences.cc
@@ -148,19 +148,19 @@ WebPreferences::WebPreferences()
#endif
{
standard_font_family_map[webkit_glue::kCommonScript] =
- ASCIIToUTF16("Times New Roman");
+ base::ASCIIToUTF16("Times New Roman");
fixed_font_family_map[webkit_glue::kCommonScript] =
- ASCIIToUTF16("Courier New");
+ base::ASCIIToUTF16("Courier New");
serif_font_family_map[webkit_glue::kCommonScript] =
- ASCIIToUTF16("Times New Roman");
+ base::ASCIIToUTF16("Times New Roman");
sans_serif_font_family_map[webkit_glue::kCommonScript] =
- ASCIIToUTF16("Arial");
+ base::ASCIIToUTF16("Arial");
cursive_font_family_map[webkit_glue::kCommonScript] =
- ASCIIToUTF16("Script");
+ base::ASCIIToUTF16("Script");
fantasy_font_family_map[webkit_glue::kCommonScript] =
- ASCIIToUTF16("Impact");
+ base::ASCIIToUTF16("Impact");
pictograph_font_family_map[webkit_glue::kCommonScript] =
- ASCIIToUTF16("Times New Roman");
+ base::ASCIIToUTF16("Times New Roman");
}
WebPreferences::~WebPreferences() {
« no previous file with comments | « webkit/common/database/database_connections_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698