diff options
Diffstat (limited to 'chrome/views/widget.h')
-rw-r--r-- | chrome/views/widget.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/chrome/views/widget.h b/chrome/views/widget.h index d3c4e08..46aa754 100644 --- a/chrome/views/widget.h +++ b/chrome/views/widget.h @@ -5,10 +5,7 @@ #ifndef CHROME_VIEWS_WIDGET_H_ #define CHROME_VIEWS_WIDGET_H_ -#if defined(OS_WIN) -// TODO(maruel): Remove once HWND is abstracted. -#include <windows.h> -#endif +#include "base/gfx/native_widget_types.h" namespace gfx { class Rect; @@ -51,10 +48,8 @@ class Widget { // the window should also become the active window. virtual void MoveToFront(bool should_activate) = 0; -#if defined(OS_WIN) - // Returns the Window HWND associated with this Widget. - virtual HWND GetHWND() const = 0; -#endif + // Returns the gfx::NativeView associated with this Widget. + virtual gfx::NativeView GetNativeView() const = 0; // Forces a paint of a specified rectangle immediately. virtual void PaintNow(const gfx::Rect& update_rect) = 0; |