| Index: content/renderer/render_widget.cc
|
| diff --git a/content/renderer/render_widget.cc b/content/renderer/render_widget.cc
|
| index a071d1477ad0e8e6c6e6962b95285a313368c79f..8dfb59d62134b83fbe9c2dc08a124e867ea8573b 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);
|
| };
|
|
|