| Index: content/renderer/render_widget.cc
|
| diff --git a/content/renderer/render_widget.cc b/content/renderer/render_widget.cc
|
| index 689b5769a6c1ded5032cbbf025f9bfd16dc4cf3f..8997a58307d4207416a25d7e8cc9e1a9b69e6467 100644
|
| --- a/content/renderer/render_widget.cc
|
| +++ b/content/renderer/render_widget.cc
|
| @@ -121,7 +121,7 @@ typedef std::map<std::string, ui::TextInputMode> TextInputModeMap;
|
| class TextInputModeMapSingleton {
|
| public:
|
| static TextInputModeMapSingleton* GetInstance() {
|
| - return Singleton<TextInputModeMapSingleton>::get();
|
| + return base::Singleton<TextInputModeMapSingleton>::get();
|
| }
|
| TextInputModeMapSingleton() {
|
| map_["verbatim"] = ui::TEXT_INPUT_MODE_VERBATIM;
|
| @@ -140,7 +140,7 @@ class TextInputModeMapSingleton {
|
| private:
|
| TextInputModeMap map_;
|
|
|
| - friend struct DefaultSingletonTraits<TextInputModeMapSingleton>;
|
| + friend struct base::DefaultSingletonTraits<TextInputModeMapSingleton>;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TextInputModeMapSingleton);
|
| };
|
|
|