diff options
Diffstat (limited to 'views/controls/native_control_win.h')
-rw-r--r-- | views/controls/native_control_win.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/views/controls/native_control_win.h b/views/controls/native_control_win.h index 1b0273b..6d0fdf0 100644 --- a/views/controls/native_control_win.h +++ b/views/controls/native_control_win.h @@ -6,9 +6,16 @@ #define VIEWS_CONTROLS_NATIVE_CONTROL_WIN_H_ #pragma once +#include "base/scoped_ptr.h" #include "views/controls/combobox/combobox.h" #include "views/controls/native/native_view_host.h" +namespace app { +namespace win { +class ScopedProp; +} +} + namespace views { // A View that hosts a native Windows control. @@ -86,6 +93,8 @@ class NativeControlWin : public NativeViewHost { // The window procedure before we subclassed. WNDPROC original_wndproc_; + scoped_ptr<app::win::ScopedProp> prop_; + DISALLOW_COPY_AND_ASSIGN(NativeControlWin); }; |