Chromium Code Reviews| Index: base/string16.h |
| diff --git a/base/string16.h b/base/string16.h |
| index 25e980c5866e267f34a69fae10e1a0547e991d0b..c299f6f70a50fd46eb279ebe2bec0139ccc4942a 100644 |
| --- a/base/string16.h |
| +++ b/base/string16.h |
| @@ -1,4 +1,4 @@ |
| -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| @@ -31,6 +31,7 @@ |
| #include <string> |
| #include "base/basictypes.h" |
| +#include "base/base_api.h" |
|
Lei Zhang
2011/04/28 23:21:45
nit: base before basic.
|
| #if defined(WCHAR_T_IS_UTF16) |
| @@ -168,7 +169,8 @@ extern template class std::basic_string<char16, base::string16_char_traits>; |
| typedef std::basic_string<char16, base::string16_char_traits> string16; |
| namespace base { |
| -extern std::ostream& operator<<(std::ostream& out, const string16& str); |
| +BASE_API extern std::ostream& operator<<(std::ostream& out, |
| + const string16& str); |
| } |
| #endif // WCHAR_T_IS_UTF32 |