summaryrefslogtreecommitdiffstats
path: root/base/values.h
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-24 15:31:21 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-24 15:31:21 +0000
commita644f1e204545af25d94225f7806a12a2b8f0b5d (patch)
tree36ad7037e0171ac0648d84e1ac551e70ab93e34f /base/values.h
parente35005d00a8cb7b6842bcb328c37cf033bf920a5 (diff)
downloadchromium_src-a644f1e204545af25d94225f7806a12a2b8f0b5d.zip
chromium_src-a644f1e204545af25d94225f7806a12a2b8f0b5d.tar.gz
chromium_src-a644f1e204545af25d94225f7806a12a2b8f0b5d.tar.bz2
Remove the Value class names from the global namespace.
BUG=88666 TEST=no change TBR=ben@chromium.org Review URL: https://codereview.chromium.org/116543010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242440 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/values.h')
-rw-r--r--base/values.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/base/values.h b/base/values.h
index 6512180..8caf835 100644
--- a/base/values.h
+++ b/base/values.h
@@ -31,11 +31,6 @@
#include "base/memory/scoped_ptr.h"
#include "base/strings/string16.h"
-// This file declares "using base::Value", etc. at the bottom, so that
-// current code can use these classes without the base namespace. In
-// new code, please always use base::Value, etc. or add your own
-// "using" declaration.
-// http://crbug.com/88666
namespace base {
class DictionaryValue;
@@ -528,10 +523,4 @@ BASE_EXPORT inline std::ostream& operator<<(std::ostream& out,
} // namespace base
-// http://crbug.com/88666
-using base::DictionaryValue;
-using base::ListValue;
-using base::StringValue;
-using base::Value;
-
#endif // BASE_VALUES_H_