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

Side by Side Diff: base/string_number_conversions.cc

Issue 7238012: Upstream android debug and log related files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove the android guard around ctype.h Created 9 years, 5 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/logging.cc ('k') | base/string_util.h » ('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 (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
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
OLDNEW
« no previous file with comments | « base/logging.cc ('k') | base/string_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698