| 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 #include "base/string_number_conversions.h" | 5 #include "base/string_number_conversions.h" |
| 6 | 6 |
| 7 #include <ctype.h> |
| 7 #include <errno.h> | 8 #include <errno.h> |
| 8 #include <stdlib.h> | 9 #include <stdlib.h> |
| 9 #include <wctype.h> | 10 #include <wctype.h> |
| 10 | 11 |
| 11 #include <limits> | 12 #include <limits> |
| 12 | 13 |
| 13 #include "base/logging.h" | 14 #include "base/logging.h" |
| 14 #include "base/third_party/dmg_fp/dmg_fp.h" | 15 #include "base/third_party/dmg_fp/dmg_fp.h" |
| 15 #include "base/utf_string_conversions.h" | 16 #include "base/utf_string_conversions.h" |
| 16 | 17 |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 end, | 536 end, |
| 536 output); | 537 output); |
| 537 } | 538 } |
| 538 #endif | 539 #endif |
| 539 | 540 |
| 540 bool HexStringToBytes(const std::string& input, std::vector<uint8>* output) { | 541 bool HexStringToBytes(const std::string& input, std::vector<uint8>* output) { |
| 541 return HexStringToBytesT(input, output); | 542 return HexStringToBytesT(input, output); |
| 542 } | 543 } |
| 543 | 544 |
| 544 } // namespace base | 545 } // namespace base |
| OLD | NEW |