diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-13 16:07:35 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-13 16:07:35 +0000 |
commit | 19bcbfa963214916a9cd6958fac9487b48cbd071 (patch) | |
tree | 6b2f7c7bd91214f980de7390051036d131cb1e8b /base/values.h | |
parent | 2f19a2efcd04eefd8b5c2da41bf1d0ceff852fb6 (diff) | |
download | chromium_src-19bcbfa963214916a9cd6958fac9487b48cbd071.zip chromium_src-19bcbfa963214916a9cd6958fac9487b48cbd071.tar.gz chromium_src-19bcbfa963214916a9cd6958fac9487b48cbd071.tar.bz2 |
Remove (deprecated) wstring version of DictionaryValue::RemoveWithoutPathExpansion().
(And convert the few remaining uses.)
BUG=23581
TEST=builds and passes tests
Review URL: http://codereview.chromium.org/3163011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56031 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/values.h')
-rw-r--r-- | base/values.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/base/values.h b/base/values.h index 333cd02..1fbc568 100644 --- a/base/values.h +++ b/base/values.h @@ -349,8 +349,6 @@ class DictionaryValue : public Value { // Like Remove(), but without special treatment of '.'. This allows e.g. URLs // to be used as paths. bool RemoveWithoutPathExpansion(const std::string& key, Value** out_value); - /*DEPRECATED*/bool RemoveWithoutPathExpansion(const std::wstring& key, - Value** out_value); // Makes a copy of |this| but doesn't include empty dictionaries and lists in // the copy. This never returns NULL, even if |this| itself is empty. |