Index: net/base/net_util.cc |
diff --git a/net/base/net_util.cc b/net/base/net_util.cc |
index f34f98021ec13c829285221816bf167efdcfcb61..2ae1e7942d82de5eff52fe6774d0f747224dc078 100644 |
--- a/net/base/net_util.cc |
+++ b/net/base/net_util.cc |
@@ -496,7 +496,8 @@ static base::Lock lang_set_lock; |
// the language |lang|. |
bool IsComponentCoveredByLang(const icu::UnicodeSet& component_characters, |
const std::string& lang) { |
- static const icu::UnicodeSet kASCIILetters(0x61, 0x7a); // [a-z] |
+ CR_DEFINE_STATIC_LOCAL( |
+ const icu::UnicodeSet, kASCIILetters, ('a', 'z')); |
icu::UnicodeSet* lang_set; |
// We're called from both the UI thread and the history thread. |
{ |