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

Side by Side Diff: components/language_usage_metrics/language_usage_metrics.cc

Issue 448853002: Move StringToLowerASCII to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/language_usage_metrics/language_usage_metrics.h" 5 #include "components/language_usage_metrics/language_usage_metrics.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/metrics/sparse_histogram.h" 9 #include "base/metrics/sparse_histogram.h"
10 #include "base/strings/string_tokenizer.h" 10 #include "base/strings/string_tokenizer.h"
(...skipping 25 matching lines...) Expand all
36 language_code); 36 language_code);
37 } 37 }
38 38
39 // static 39 // static
40 int LanguageUsageMetrics::ToLanguageCode(const std::string& locale) { 40 int LanguageUsageMetrics::ToLanguageCode(const std::string& locale) {
41 base::StringTokenizer parts(locale, "-_"); 41 base::StringTokenizer parts(locale, "-_");
42 if (!parts.GetNext()) 42 if (!parts.GetNext())
43 return 0; 43 return 0;
44 44
45 std::string language_part = parts.token(); 45 std::string language_part = parts.token();
46 StringToLowerASCII(&language_part); 46 base::StringToLowerASCII(&language_part);
47 47
48 int language_code = 0; 48 int language_code = 0;
49 for (std::string::iterator it = language_part.begin(); 49 for (std::string::iterator it = language_part.begin();
50 it != language_part.end(); ++it) { 50 it != language_part.end(); ++it) {
51 char ch = *it; 51 char ch = *it;
52 if (ch < 'a' || 'z' < ch) 52 if (ch < 'a' || 'z' < ch)
53 return 0; 53 return 0;
54 54
55 language_code <<= 8; 55 language_code <<= 8;
56 language_code += ch; 56 language_code += ch;
57 } 57 }
58 58
59 return language_code; 59 return language_code;
60 } 60 }
61 61
62 // static 62 // static
63 void LanguageUsageMetrics::ParseAcceptLanguages( 63 void LanguageUsageMetrics::ParseAcceptLanguages(
64 const std::string& accept_languages, 64 const std::string& accept_languages,
65 std::set<int>* languages) { 65 std::set<int>* languages) {
66 languages->clear(); 66 languages->clear();
67 base::StringTokenizer locales(accept_languages, ","); 67 base::StringTokenizer locales(accept_languages, ",");
68 while (locales.GetNext()) { 68 while (locales.GetNext()) {
69 const int language_code = ToLanguageCode(locales.token()); 69 const int language_code = ToLanguageCode(locales.token());
70 if (language_code != 0) 70 if (language_code != 0)
71 languages->insert(language_code); 71 languages->insert(language_code);
72 } 72 }
73 } 73 }
74 74
75 } // namespace language_usage_metrics 75 } // namespace language_usage_metrics
OLDNEW
« no previous file with comments | « components/autofill/core/common/save_password_progress_logger.cc ('k') | components/nacl/renderer/nexe_load_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698