diff options
author | erikwright@chromium.org <erikwright@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-13 20:05:58 +0000 |
---|---|---|
committer | erikwright@chromium.org <erikwright@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-13 20:05:58 +0000 |
commit | a9f4b98655a0584e34380d67c8b0cd1158a4a53f (patch) | |
tree | 6e5106bdc29b134286eb3ddfdff6a33d88d70699 /base/logging.h | |
parent | a21de68c23ab80c06bb6095e8eb417435517748e (diff) | |
download | chromium_src-a9f4b98655a0584e34380d67c8b0cd1158a4a53f.zip chromium_src-a9f4b98655a0584e34380d67c8b0cd1158a4a53f.tar.gz chromium_src-a9f4b98655a0584e34380d67c8b0cd1158a4a53f.tar.bz2 |
Revert "Extract common code from StringPiece and StringPiece16 into a templated base class....
... Convert copy-and-pasted unit tests into TYPED_TESTs."
This reverts commit 20543ba53ab8737affb06a21149c15f772246aed.
BUG=
TEST=
Review URL: http://codereview.chromium.org/8933012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114255 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/logging.h')
-rw-r--r-- | base/logging.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/base/logging.h b/base/logging.h index 9c660fa..94a82ad 100644 --- a/base/logging.h +++ b/base/logging.h @@ -983,8 +983,7 @@ inline std::ostream& operator<<(std::ostream& out, const std::wstring& wstr) { namespace base { -template <typename STRING_TYPE> class BasicStringPiece; -typedef BasicStringPiece<std::string> StringPiece; +class StringPiece; // Allows StringPiece to be logged. BASE_EXPORT std::ostream& operator<<(std::ostream& o, const StringPiece& piece); |