diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-14 01:49:14 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-14 01:49:14 +0000 |
commit | 9001854dba5933cfd3cecb2e7a1bb73c50cb57d2 (patch) | |
tree | 6908aa44e120a3666e1ab824e69504d5ad65bcdd /base/values.cc | |
parent | 67dd36a9a1022bc9a63f74740dff610536e536e8 (diff) | |
download | chromium_src-9001854dba5933cfd3cecb2e7a1bb73c50cb57d2.zip chromium_src-9001854dba5933cfd3cecb2e7a1bb73c50cb57d2.tar.gz chromium_src-9001854dba5933cfd3cecb2e7a1bb73c50cb57d2.tar.bz2 |
Remove deprecated wstring DictionaryValue::Get{Dictionary,List}WithoutPathExpansion() overloads.
BUG=23581
TEST=builds and passes tests
Review URL: http://codereview.chromium.org/3163015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56121 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/values.cc')
-rw-r--r-- | base/values.cc | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/base/values.cc b/base/values.cc index b2e276e..82fdbed 100644 --- a/base/values.cc +++ b/base/values.cc @@ -782,19 +782,6 @@ bool DictionaryValue::GetStringWithoutPathExpansion( return value->GetAsString(out_value); } -// TODO(viettrungluu): Deprecated and to be removed: -bool DictionaryValue::GetDictionaryWithoutPathExpansion( - const std::wstring& key, - DictionaryValue** out_value) const { - return GetDictionaryWithoutPathExpansion(WideToUTF8(key), out_value); -} - -// TODO(viettrungluu): Deprecated and to be removed: -bool DictionaryValue::GetListWithoutPathExpansion(const std::wstring& key, - ListValue** out_value) const { - return GetListWithoutPathExpansion(WideToUTF8(key), out_value); -} - bool DictionaryValue::Remove(const std::string& path, Value** out_value) { DCHECK(IsStringUTF8(path)); std::string current_path(path); |