| Index: ui/base/x/x11_util.cc
|
| diff --git a/ui/base/x/x11_util.cc b/ui/base/x/x11_util.cc
|
| index ad3bb363b293bc053a633467031b9bc453be4e75..f7b29fdf6a7fbacf4204702e1e60c1201617b6e9 100644
|
| --- a/ui/base/x/x11_util.cc
|
| +++ b/ui/base/x/x11_util.cc
|
| @@ -211,7 +211,7 @@ XCursorCache* cursor_cache = NULL;
|
| class XCustomCursorCache {
|
| public:
|
| static XCustomCursorCache* GetInstance() {
|
| - return Singleton<XCustomCursorCache>::get();
|
| + return base::Singleton<XCustomCursorCache>::get();
|
| }
|
|
|
| ::Cursor InstallCustomCursor(XcursorImage* image) {
|
| @@ -239,7 +239,7 @@ class XCustomCursorCache {
|
| }
|
|
|
| private:
|
| - friend struct DefaultSingletonTraits<XCustomCursorCache>;
|
| + friend struct base::DefaultSingletonTraits<XCustomCursorCache>;
|
|
|
| class XCustomCursor {
|
| public:
|
|
|