| Index: base/i18n/file_util_icu.cc
|
| diff --git a/base/i18n/file_util_icu.cc b/base/i18n/file_util_icu.cc
|
| index 34eeface3e6fe588eaa9c37125b072a9758b56d1..ba69da01c45782851a965db37e7e3bf9d8081b6b 100644
|
| --- a/base/i18n/file_util_icu.cc
|
| +++ b/base/i18n/file_util_icu.cc
|
| @@ -90,7 +90,7 @@ class LocaleAwareComparator {
|
| int Compare(const string16& a, const string16& b) {
|
| // We are not sure if Collator::compare is thread-safe.
|
| // Use an AutoLock just in case.
|
| - AutoLock auto_lock(lock_);
|
| + base::AutoLock auto_lock(lock_);
|
|
|
| UErrorCode error_code = U_ZERO_ERROR;
|
| UCollationResult result = collator_->compare(
|
| @@ -120,7 +120,7 @@ class LocaleAwareComparator {
|
| }
|
|
|
| scoped_ptr<icu::Collator> collator_;
|
| - Lock lock_;
|
| + base::Lock lock_;
|
| friend struct DefaultSingletonTraits<LocaleAwareComparator>;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(LocaleAwareComparator);
|
|
|