| Index: base/values.h
|
| diff --git a/base/values.h b/base/values.h
|
| index 026fcf664b0510c884f08c4368b0aa52c2b229ef..b6b17dca56f20e9564e3668cd482c2c1174ca9c7 100644
|
| --- a/base/values.h
|
| +++ b/base/values.h
|
| @@ -217,11 +217,6 @@ class BASE_EXPORT DictionaryValue : public Value {
|
| DictionaryValue();
|
| virtual ~DictionaryValue();
|
|
|
| - // Overridden from Value:
|
| - virtual bool GetAsDictionary(DictionaryValue** out_value) OVERRIDE;
|
| - virtual bool GetAsDictionary(
|
| - const DictionaryValue** out_value) const OVERRIDE;
|
| -
|
| // Returns true if the current dictionary has a value for the given key.
|
| bool HasKey(const std::string& key) const;
|
|
|
| @@ -368,6 +363,9 @@ class BASE_EXPORT DictionaryValue : public Value {
|
| };
|
|
|
| // Overridden from Value:
|
| + virtual bool GetAsDictionary(DictionaryValue** out_value) OVERRIDE;
|
| + virtual bool GetAsDictionary(const DictionaryValue** out_value)
|
| + const OVERRIDE;
|
| virtual DictionaryValue* DeepCopy() const OVERRIDE;
|
| virtual bool Equals(const Value* other) const OVERRIDE;
|
|
|
|
|