summaryrefslogtreecommitdiffstats
path: root/chrome/browser/pref_service.h
diff options
context:
space:
mode:
authorestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-18 02:20:04 +0000
committerestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-18 02:20:04 +0000
commit20ce516dc41e836279baba3a214f1b4e4dbcc22d (patch)
treef0b9a40a9bdd875ef79f6254414dfd05a222a0d5 /chrome/browser/pref_service.h
parent8ecf35ac037b7847c280fcbe402c53250db0d53a (diff)
downloadchromium_src-20ce516dc41e836279baba3a214f1b4e4dbcc22d.zip
chromium_src-20ce516dc41e836279baba3a214f1b4e4dbcc22d.tar.gz
chromium_src-20ce516dc41e836279baba3a214f1b4e4dbcc22d.tar.bz2
Pref service strings should be std::string.
Part 1: Convert RegisterStringPref. BUG=none TEST=compile Review URL: http://codereview.chromium.org/2809022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50202 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/pref_service.h')
-rw-r--r--chrome/browser/pref_service.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/pref_service.h b/chrome/browser/pref_service.h
index 5247e83..6b83d04 100644
--- a/chrome/browser/pref_service.h
+++ b/chrome/browser/pref_service.h
@@ -99,7 +99,7 @@ class PrefService : public NonThreadSafe {
void RegisterRealPref(const wchar_t* path,
double default_value);
void RegisterStringPref(const wchar_t* path,
- const std::wstring& default_value);
+ const std::string& default_value);
void RegisterFilePathPref(const wchar_t* path,
const FilePath& default_value);
void RegisterListPref(const wchar_t* path);