summaryrefslogtreecommitdiffstats
path: root/base/values.cc
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-14 03:32:17 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-14 03:32:17 +0000
commit8b6e84a68798718a3dd66bc82bdbed50cff79f00 (patch)
treef69809fda4ad0423d8d5ac9d7f2030efbd8ab4f2 /base/values.cc
parenta60153f0ada9823286a54b8b8852526e3e21a5a1 (diff)
downloadchromium_src-8b6e84a68798718a3dd66bc82bdbed50cff79f00.zip
chromium_src-8b6e84a68798718a3dd66bc82bdbed50cff79f00.tar.gz
chromium_src-8b6e84a68798718a3dd66bc82bdbed50cff79f00.tar.bz2
Remove deprecated wstring DictionaryValue::SetWithoutPathExpansion().
BUG=23581 TEST=builds and passes tests Review URL: http://codereview.chromium.org/3121017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56128 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/values.cc')
-rw-r--r--base/values.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/base/values.cc b/base/values.cc
index 1a1695c..d4b01c8 100644
--- a/base/values.cc
+++ b/base/values.cc
@@ -497,12 +497,6 @@ void DictionaryValue::SetWithoutPathExpansion(const std::string& key,
dictionary_[key] = in_value;
}
-// TODO(viettrungluu): Deprecated and to be removed:
-void DictionaryValue::SetWithoutPathExpansion(const std::wstring& key,
- Value* in_value) {
- SetWithoutPathExpansion(WideToUTF8(key), in_value);
-}
-
bool DictionaryValue::Get(const std::string& path, Value** out_value) const {
DCHECK(IsStringUTF8(path));
std::string current_path(path);