summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
Diffstat (limited to 'base')
-rw-r--r--base/values.cc5
-rw-r--r--base/values.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/base/values.cc b/base/values.cc
index 82fdbed..c4f33c9 100644
--- a/base/values.cc
+++ b/base/values.cc
@@ -385,11 +385,6 @@ bool DictionaryValue::HasKey(const std::string& key) const {
}
// TODO(viettrungluu): Deprecated and to be removed:
-bool DictionaryValue::HasKeyASCII(const std::string& key) const {
- return HasKey(key);
-}
-
-// TODO(viettrungluu): Deprecated and to be removed:
bool DictionaryValue::HasKey(const std::wstring& key) const {
return HasKey(WideToUTF8(key));
}
diff --git a/base/values.h b/base/values.h
index 005db96..a750422 100644
--- a/base/values.h
+++ b/base/values.h
@@ -223,7 +223,6 @@ class DictionaryValue : public Value {
// Returns true if the current dictionary has a value for the given key.
bool HasKey(const std::string& key) const;
- /*DEPRECATED*/bool HasKeyASCII(const std::string& key) const;
/*DEPRECATED*/bool HasKey(const std::wstring& key) const;
// Returns the number of Values in this dictionary.