Searched defs:HWNDSubclass (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ui/base/win/
H A Dhwnd_subclass.h29 // The order in which HWNDMessageFilters are added in HWNDSubclass::AddFilter
41 class UI_BASE_EXPORT HWNDSubclass { class in namespace:ui
43 ~HWNDSubclass();
45 // Adds |filter| to the HWNDSubclass of |target|. Caller retains ownership of
50 // Removes |filter| from any HWNDSubclass that has it.
53 // Returns a non-null HWNDSubclass corresponding to the HWND |target|. Creates
55 static HWNDSubclass* GetHwndSubclassForTarget(HWND target);
57 // Adds |filter| if not already added to this HWNDSubclass. Caller retains
62 // Removes |filter| from this HWNDSubclass instance if present.
71 explicit HWNDSubclass(HWN
[all...]
H A Dhwnd_subclass.cc22 ui::HWNDSubclass* wrapped_wnd_proc =
23 reinterpret_cast<ui::HWNDSubclass*>(
54 // ui::HWNDSubclass objects.
55 class HWNDSubclass::HWNDSubclassFactory {
62 // Returns a non-null HWNDSubclass corresponding to the HWND |target|. Creates
64 HWNDSubclass* GetHwndSubclassForTarget(HWND target) {
66 HWNDSubclass* subclass = reinterpret_cast<HWNDSubclass*>(
69 subclass = new ui::HWNDSubclass(target);
75 const ScopedVector<HWNDSubclass>
122 HWNDSubclass::HWNDSubclass(HWND target) function in class:ui::HWNDSubclass
[all...]

Completed in 118 milliseconds