summaryrefslogtreecommitdiffstats
path: root/views/focus/focus_util_win.h
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-21 22:44:21 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-21 22:44:21 +0000
commit3b8a7f8e37e223f3cfbdb6893a3e372ba1e72bc2 (patch)
treedbcc9e25653efaa6d7b3fd0b646f56123f72f8f2 /views/focus/focus_util_win.h
parent294b014b3743b8a359d423ab238d2ea2872cf629 (diff)
downloadchromium_src-3b8a7f8e37e223f3cfbdb6893a3e372ba1e72bc2.zip
chromium_src-3b8a7f8e37e223f3cfbdb6893a3e372ba1e72bc2.tar.gz
chromium_src-3b8a7f8e37e223f3cfbdb6893a3e372ba1e72bc2.tar.bz2
Attempt 2 at:
Converts usage of SetProp/GetProp to a map. Even after making sure we clean up props we still leak in a handful of cases that are causing test grief. By and large our usage of properties is for inside the application, so that a map works fine. BUG=61528 44991 TEST=none TBR=cpu@chromium.org Review URL: http://codereview.chromium.org/5144005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66920 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/focus/focus_util_win.h')
-rw-r--r--views/focus/focus_util_win.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/views/focus/focus_util_win.h b/views/focus/focus_util_win.h
index 2c53c68..6394f5d 100644
--- a/views/focus/focus_util_win.h
+++ b/views/focus/focus_util_win.h
@@ -9,18 +9,16 @@
#include <windows.h>
namespace app {
-namespace win {
-class ScopedProp;
-}
+class ViewProp;
}
namespace views {
// Marks the passed |hwnd| as supporting mouse-wheel message rerouting.
// We reroute the mouse wheel messages to such HWND when they are under the
-// mouse pointer (but are not the active window). Callers must delete the
-// returned object before the window is destroyed (see ScopedProp for details).
-app::win::ScopedProp* SetWindowSupportsRerouteMouseWheel(HWND hwnd);
+// mouse pointer (but are not the active window). Callers own the returned
+// object.
+app::ViewProp* SetWindowSupportsRerouteMouseWheel(HWND hwnd);
// Forwards mouse wheel messages to the window under it.
// Windows sends mouse wheel messages to the currently active window.