diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-17 04:00:57 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-17 04:00:57 +0000 |
commit | a65175d452e6cb3c9c3599ab4206c42b8ab78bfd (patch) | |
tree | ae69bde6df9080e4e367c23bba9096a1bf302c60 /base/values.h | |
parent | d9e0c26a9c2850d42c4de6b2f981a8da56497c2c (diff) | |
download | chromium_src-a65175d452e6cb3c9c3599ab4206c42b8ab78bfd.zip chromium_src-a65175d452e6cb3c9c3599ab4206c42b8ab78bfd.tar.gz chromium_src-a65175d452e6cb3c9c3599ab4206c42b8ab78bfd.tar.bz2 |
Remove deprecated wstring DictionaryValue Get{Boolean,Integer,Real,Binary,Dictionary,List}().
BUG=23581
TEST=builds and passes tests
Review URL: http://codereview.chromium.org/3187004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56302 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/values.h')
-rw-r--r-- | base/values.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/base/values.h b/base/values.h index 7f607fd..479e0fc 100644 --- a/base/values.h +++ b/base/values.h @@ -283,16 +283,6 @@ class DictionaryValue : public Value { bool GetDictionary(const std::string& path, DictionaryValue** out_value) const; bool GetList(const std::string& path, ListValue** out_value) const; - /*DEPRECATED*/bool GetBoolean(const std::wstring& path, - bool* out_value) const; - /*DEPRECATED*/bool GetInteger(const std::wstring& path, int* out_value) const; - /*DEPRECATED*/bool GetReal(const std::wstring& path, double* out_value) const; - /*DEPRECATED*/bool GetBinary(const std::wstring& path, - BinaryValue** out_value) const; - /*DEPRECATED*/bool GetDictionary(const std::wstring& path, - DictionaryValue** out_value) const; - /*DEPRECATED*/bool GetList(const std::wstring& path, - ListValue** out_value) const; // Like Get(), but without special treatment of '.'. This allows e.g. URLs to // be used as paths. |