| Index: base/string_piece.cc
|
| diff --git a/base/string_piece.cc b/base/string_piece.cc
|
| index 1acb0cbfdda664961fd229d205f2e05cc275579e..68448920177e1b305aaceb41bb3389c2d652827f 100644
|
| --- a/base/string_piece.cc
|
| +++ b/base/string_piece.cc
|
| @@ -8,6 +8,8 @@
|
|
|
| #include "base/string_piece.h"
|
|
|
| +namespace base {
|
| +
|
| typedef StringPiece::size_type size_type;
|
|
|
| std::ostream& operator<<(std::ostream& o, const StringPiece& piece) {
|
| @@ -213,3 +215,5 @@ StringPiece StringPiece::substr(size_type pos, size_type n) const {
|
| }
|
|
|
| const StringPiece::size_type StringPiece::npos = size_type(-1);
|
| +
|
| +} // namespace base
|
|
|