| Index: components/url_formatter/url_formatter.cc
|
| diff --git a/components/url_formatter/url_formatter.cc b/components/url_formatter/url_formatter.cc
|
| index a8031bd2df26138a3c64ce1b602f0411563126cc..ac7c62e14c79f58b837c07d8ded9b66f009cdc97 100644
|
| --- a/components/url_formatter/url_formatter.cc
|
| +++ b/components/url_formatter/url_formatter.cc
|
| @@ -307,7 +307,7 @@ typedef std::map<std::string, icu::UnicodeSet*> LangToExemplarSetMap;
|
| class LangToExemplarSet {
|
| public:
|
| static LangToExemplarSet* GetInstance() {
|
| - return Singleton<LangToExemplarSet>::get();
|
| + return base::Singleton<LangToExemplarSet>::get();
|
| }
|
|
|
| private:
|
| @@ -317,8 +317,8 @@ class LangToExemplarSet {
|
| STLDeleteContainerPairSecondPointers(map.begin(), map.end());
|
| }
|
|
|
| - friend class Singleton<LangToExemplarSet>;
|
| - friend struct DefaultSingletonTraits<LangToExemplarSet>;
|
| + friend class base::Singleton<LangToExemplarSet>;
|
| + friend struct base::DefaultSingletonTraits<LangToExemplarSet>;
|
| friend bool GetExemplarSetForLang(const std::string&, icu::UnicodeSet**);
|
| friend void SetExemplarSetForLang(const std::string&, icu::UnicodeSet*);
|
|
|
|
|