Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(681)

Unified Diff: ui/base/x/x11_util.cc

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/base/x/x11_menu_list.cc ('k') | ui/chromeos/ime/input_method_menu_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « ui/base/x/x11_menu_list.cc ('k') | ui/chromeos/ime/input_method_menu_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698