Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1227)

Unified Diff: base/values.h

Issue 8851007: WIP / Do not commit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/base.gypi ('k') | base/values.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « base/base.gypi ('k') | base/values.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698