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

Unified Diff: webkit/glue/webpreferences.h

Issue 192017: Convert std::wstring encoding names to std::string in a bunch of files. (Closed)
Patch Set: mac and linux fixes Created 11 years, 3 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 | « chrome/test/automation/tab_proxy.cc ('k') | webkit/glue/webpreferences.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webpreferences.h
diff --git a/webkit/glue/webpreferences.h b/webkit/glue/webpreferences.h
index f0ab0bbf34a3604e00b7dbdd71496cfdd1fd3cf8..8c9a6495d118bfae255ab6793e29e8fc6381afbf 100644
--- a/webkit/glue/webpreferences.h
+++ b/webkit/glue/webpreferences.h
@@ -27,7 +27,7 @@ struct WebPreferences {
int default_fixed_font_size;
int minimum_font_size;
int minimum_logical_font_size;
- std::wstring default_encoding;
+ std::string default_encoding;
bool javascript_enabled;
bool web_security_enabled;
bool javascript_can_open_windows_automatically;
@@ -68,7 +68,7 @@ struct WebPreferences {
default_fixed_font_size(13),
minimum_font_size(1),
minimum_logical_font_size(6),
- default_encoding(L"ISO-8859-1"),
+ default_encoding("ISO-8859-1"),
javascript_enabled(true),
web_security_enabled(true),
javascript_can_open_windows_automatically(true),
« no previous file with comments | « chrome/test/automation/tab_proxy.cc ('k') | webkit/glue/webpreferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698