| Index: ui/base/l10n/l10n_util_collator.h
|
| diff --git a/ui/base/l10n/l10n_util_collator.h b/ui/base/l10n/l10n_util_collator.h
|
| index a0bfb92ebbcc355b1b0f6051c4730870c21736fd..f16065d202bc189cb9237be8f12f34d4d3dbf012 100644
|
| --- a/ui/base/l10n/l10n_util_collator.h
|
| +++ b/ui/base/l10n/l10n_util_collator.h
|
| @@ -82,7 +82,7 @@ void SortStringsUsingMethod(const std::string& locale,
|
| // Compares two elements' string keys and returns true if the first element's
|
| // string key is less than the second element's string key. The Element must
|
| // have a method like the follow format to return the string key.
|
| -// const string16& GetStringKey() const;
|
| +// const base::string16& GetStringKey() const;
|
| // This uses the locale specified in the constructor.
|
| template <class Element>
|
| class StringComparator : public std::binary_function<const Element&,
|
| @@ -105,7 +105,7 @@ class StringComparator : public std::binary_function<const Element&,
|
| icu::Collator* collator_;
|
| };
|
|
|
| -// Specialization of operator() method for string16 version.
|
| +// Specialization of operator() method for base::string16 version.
|
| template <> UI_EXPORT
|
| bool StringComparator<base::string16>::operator()(const base::string16& lhs,
|
| const base::string16& rhs);
|
|
|