| 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 // This file defines utility functions for working with strings. | 5 // This file defines utility functions for working with strings. |
| 6 | 6 |
| 7 #ifndef BASE_STRING_UTIL_H_ | 7 #ifndef BASE_STRING_UTIL_H_ |
| 8 #define BASE_STRING_UTIL_H_ | 8 #define BASE_STRING_UTIL_H_ |
| 9 #pragma once | |
| 10 | 9 |
| 11 #include <ctype.h> | 10 #include <ctype.h> |
| 12 #include <stdarg.h> // va_list | 11 #include <stdarg.h> // va_list |
| 13 | 12 |
| 14 #include <string> | 13 #include <string> |
| 15 #include <vector> | 14 #include <vector> |
| 16 | 15 |
| 17 #include "base/base_export.h" | 16 #include "base/base_export.h" |
| 18 #include "base/basictypes.h" | 17 #include "base/basictypes.h" |
| 19 #include "base/compiler_specific.h" | 18 #include "base/compiler_specific.h" |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 #elif defined(WCHAR_T_IS_UTF32) | 559 #elif defined(WCHAR_T_IS_UTF32) |
| 561 typedef uint32 Unsigned; | 560 typedef uint32 Unsigned; |
| 562 #endif | 561 #endif |
| 563 }; | 562 }; |
| 564 template<> | 563 template<> |
| 565 struct ToUnsigned<short> { | 564 struct ToUnsigned<short> { |
| 566 typedef unsigned short Unsigned; | 565 typedef unsigned short Unsigned; |
| 567 }; | 566 }; |
| 568 | 567 |
| 569 #endif // BASE_STRING_UTIL_H_ | 568 #endif // BASE_STRING_UTIL_H_ |
| OLD | NEW |