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

Unified Diff: views/focus/focus_util_win.cc

Issue 6254011: Move UI-relevant Windows files to ui/base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 | « views/controls/tree/tree_view.cc ('k') | views/widget/default_theme_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/focus/focus_util_win.cc
===================================================================
--- views/focus/focus_util_win.cc (revision 71828)
+++ views/focus/focus_util_win.cc (working copy)
@@ -6,9 +6,9 @@
#include <windowsx.h>
-#include "app/win/hwnd_util.h"
#include "app/view_prop.h"
#include "base/auto_reset.h"
+#include "ui/base/win/hwnd_util.h"
using app::ViewProp;
@@ -34,7 +34,7 @@
}
static bool IsCompatibleWithMouseWheelRedirection(HWND window) {
- std::wstring class_name = app::win::GetClassName(window);
+ std::wstring class_name = ui::GetClassName(window);
// Mousewheel redirection to comboboxes is a surprising and
// undesireable user behavior.
return !(class_name == L"ComboBox" ||
@@ -42,7 +42,7 @@
}
static bool CanRedirectMouseWheelFrom(HWND window) {
- std::wstring class_name = app::win::GetClassName(window);
+ std::wstring class_name = ui::GetClassName(window);
// Older Thinkpad mouse wheel drivers create a window under mouse wheel
// pointer. Detect if we are dealing with this window. In this case we
« no previous file with comments | « views/controls/tree/tree_view.cc ('k') | views/widget/default_theme_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698