| Index: components/autofill/core/common/autofill_regexes.cc
|
| diff --git a/components/autofill/core/common/autofill_regexes.cc b/components/autofill/core/common/autofill_regexes.cc
|
| index 64de9f4a1565b488440f011732c6a2fd754d35da..cdea63cb5c83c1ab3bca8008a6fa2fe0c44b7a73 100644
|
| --- a/components/autofill/core/common/autofill_regexes.cc
|
| +++ b/components/autofill/core/common/autofill_regexes.cc
|
| @@ -24,7 +24,7 @@ class AutofillRegexes {
|
| private:
|
| AutofillRegexes();
|
| ~AutofillRegexes();
|
| - friend struct DefaultSingletonTraits<AutofillRegexes>;
|
| + friend struct base::DefaultSingletonTraits<AutofillRegexes>;
|
|
|
| // Maps patterns to their corresponding regex matchers.
|
| base::ScopedPtrHashMap<base::string16, scoped_ptr<icu::RegexMatcher>>
|
| @@ -35,7 +35,7 @@ class AutofillRegexes {
|
|
|
| // static
|
| AutofillRegexes* AutofillRegexes::GetInstance() {
|
| - return Singleton<AutofillRegexes>::get();
|
| + return base::Singleton<AutofillRegexes>::get();
|
| }
|
|
|
| AutofillRegexes::AutofillRegexes() {
|
|
|