diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 18:20:05 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-05 18:20:05 +0000 |
commit | b59ea313fd719a12140376a8f99409cdcd44d39d (patch) | |
tree | 05610dd307c12b258a31cbaf33611d876173180e /base | |
parent | 120a314db5e17428f5d8e9bc511b957c0cbdf0f7 (diff) | |
download | chromium_src-b59ea313fd719a12140376a8f99409cdcd44d39d.zip chromium_src-b59ea313fd719a12140376a8f99409cdcd44d39d.tar.gz chromium_src-b59ea313fd719a12140376a8f99409cdcd44d39d.tar.bz2 |
base: Remove using declaration of BinaryValue as it's no longer necessary.
BUG=None
TEST=None
R=evan@chromium.org
Review URL: http://codereview.chromium.org/7550026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95638 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/values.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/base/values.h b/base/values.h index 479beef..ebb909b 100644 --- a/base/values.h +++ b/base/values.h @@ -30,7 +30,6 @@ #include "base/base_export.h" #include "base/basictypes.h" #include "base/string16.h" -#include "build/build_config.h" // This file declares "using base::Value", etc. at the bottom, so that // current code can use these classes without the base namespace. In @@ -49,9 +48,9 @@ class Value; typedef std::vector<Value*> ValueVector; typedef std::map<std::string, Value*> ValueMap; -// The Value class is the base class for Values. A Value can be -// instantiated via the Create*Value() factory methods, or by directly -// creating instances of the subclasses. +// The Value class is the base class for Values. A Value can be instantiated +// via the Create*Value() factory methods, or by directly creating instances of +// the subclasses. class BASE_EXPORT Value { public: enum ValueType { @@ -465,7 +464,6 @@ class BASE_EXPORT ValueSerializer { } // namespace base // http://crbug.com/88666 -using base::BinaryValue; using base::DictionaryValue; using base::FundamentalValue; using base::ListValue; |