Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(430)

Side by Side Diff: base/strings/string16.h

Issue 93903011: Remove 'using base::string16;' from base/strings/string16.h and remove temporary (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: asdf Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/file_version_info_win.cc ('k') | base/test/test_process_killer_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_STRINGS_STRING16_H_ 5 #ifndef BASE_STRINGS_STRING16_H_
6 #define BASE_STRINGS_STRING16_H_ 6 #define BASE_STRINGS_STRING16_H_
7 7
8 // WHAT: 8 // WHAT:
9 // A version of std::basic_string that provides 2-byte characters even when 9 // A version of std::basic_string that provides 2-byte characters even when
10 // wchar_t is not implemented as a 2-byte type. You can access this class as 10 // wchar_t is not implemented as a 2-byte type. You can access this class as
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 // to occur even when a std::basic_string<> does not cross shared library 174 // to occur even when a std::basic_string<> does not cross shared library
175 // boundaries, such as in statically-linked executables. 175 // boundaries, such as in statically-linked executables.
176 // 176 //
177 // TODO(mark): File this bug with Apple and update this note with a bug number. 177 // TODO(mark): File this bug with Apple and update this note with a bug number.
178 178
179 extern template 179 extern template
180 class BASE_EXPORT std::basic_string<base::char16, base::string16_char_traits>; 180 class BASE_EXPORT std::basic_string<base::char16, base::string16_char_traits>;
181 181
182 #endif // WCHAR_T_IS_UTF32 182 #endif // WCHAR_T_IS_UTF32
183 183
184 // TODO(brettw) update users of string16 to use the namespace and remove
185 // this "using".
186 using base::string16;
187
188 #endif // BASE_STRINGS_STRING16_H_ 184 #endif // BASE_STRINGS_STRING16_H_
OLDNEW
« no previous file with comments | « base/file_version_info_win.cc ('k') | base/test/test_process_killer_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698