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

Unified Diff: ui/gfx/win/singleton_hwnd.cc

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format Created 5 years, 4 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
Index: ui/gfx/win/singleton_hwnd.cc
diff --git a/ui/gfx/win/singleton_hwnd.cc b/ui/gfx/win/singleton_hwnd.cc
index 9a9d183af6e007dfb912774bc6b8b782c49dbbcd..486bcf7ae463315678f5f9fe51739aaaef128c98 100644
--- a/ui/gfx/win/singleton_hwnd.cc
+++ b/ui/gfx/win/singleton_hwnd.cc
@@ -12,7 +12,7 @@ namespace gfx {
// static
SingletonHwnd* SingletonHwnd::GetInstance() {
- return Singleton<SingletonHwnd>::get();
+ return base::Singleton<SingletonHwnd>::get();
}
BOOL SingletonHwnd::ProcessWindowMessage(HWND window,

Powered by Google App Engine
This is Rietveld 408576698