OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef BASE_STRING16_H_ | 5 #ifndef BASE_STRING16_H_ |
6 #define BASE_STRING16_H_ | 6 #define BASE_STRING16_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 // WHAT: | 9 // WHAT: |
10 // A version of std::basic_string that provides 2-byte characters even when | 10 // A version of std::basic_string that provides 2-byte characters even when |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 // | 164 // |
165 // TODO(mark): File this bug with Apple and update this note with a bug number. | 165 // TODO(mark): File this bug with Apple and update this note with a bug number. |
166 | 166 |
167 extern template class std::basic_string<char16, base::string16_char_traits>; | 167 extern template class std::basic_string<char16, base::string16_char_traits>; |
168 | 168 |
169 typedef std::basic_string<char16, base::string16_char_traits> string16; | 169 typedef std::basic_string<char16, base::string16_char_traits> string16; |
170 | 170 |
171 namespace base { | 171 namespace base { |
172 BASE_EXPORT extern std::ostream& operator<<(std::ostream& out, | 172 BASE_EXPORT extern std::ostream& operator<<(std::ostream& out, |
173 const string16& str); | 173 const string16& str); |
| 174 |
| 175 // This is required by googletest to print a readable output on test failures. |
| 176 BASE_EXPORT extern void PrintTo(const string16& str, std::ostream* out); |
174 } | 177 } |
175 | 178 |
176 #endif // WCHAR_T_IS_UTF32 | 179 #endif // WCHAR_T_IS_UTF32 |
177 | 180 |
178 #endif // BASE_STRING16_H_ | 181 #endif // BASE_STRING16_H_ |
OLD | NEW |