Index: ui/gfx/font_smoothing_win.cc |
diff --git a/ui/gfx/font_smoothing_win.cc b/ui/gfx/font_smoothing_win.cc |
index a4be72930a4365e1dc4c5c6fac15337defa49239..b181fb564e87bbcd8e3450b1efab992e5179973e 100644 |
--- a/ui/gfx/font_smoothing_win.cc |
+++ b/ui/gfx/font_smoothing_win.cc |
@@ -5,13 +5,13 @@ |
#include "ui/gfx/font_smoothing_win.h" |
#include "base/memory/singleton.h" |
-#include "ui/base/win/singleton_hwnd.h" |
+#include "ui/gfx/win/singleton_hwnd.h" |
namespace { |
// Helper class to cache font smoothing settings and listen for notifications |
// to re-query them from the system. |
-class CachedFontSmoothingSettings : public ui::SingletonHwnd::Observer { |
+class CachedFontSmoothingSettings : public gfx::SingletonHwnd::Observer { |
public: |
static CachedFontSmoothingSettings* GetInstance(); |
@@ -66,7 +66,7 @@ void CachedFontSmoothingSettings::GetFontSmoothingSettings( |
need_to_query_settings_ = false; |
} |
if (!observer_added_) { |
- ui::SingletonHwnd::GetInstance()->AddObserver(this); |
+ gfx::SingletonHwnd::GetInstance()->AddObserver(this); |
observer_added_ = true; |
} |
*smoothing_enabled = smoothing_enabled_; |